/* ═══════════════════════════════════════════════════════════════════
   ABACO ROOTS — DESIGN SYSTEM  v2
   Palette: Client prototype (Navy · Reef · Sand · Gold · Coral)
   layered over the existing structure — all admin styles preserved.
═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
    /* Client colours */
    --navy:           #07131b;
    --storm:          #12303b;
    --deep:           #0b2029;
    --reef:           #49d1c7;
    --seafoam:        #b7efe7;
    --sand:           #f4ead8;
    --sand-dark:      #e0ceaf;
    --wood:           #7b4c2b;
    --gold:           #d99a27;
    --coral:          #ff6d4a;
    --ink:            #f8f4ea;
    --muted:          rgba(248,244,234,0.70);
    --glass:          rgba(7,19,27,0.60);

    /* Aliased for backward-compat with admin views */
    --color-teal:         #1a4a5c;
    --color-teal-mid:     var(--reef);
    --color-teal-light:   var(--seafoam);
    --color-sand:         var(--sand);
    --color-sand-dark:    var(--sand-dark);
    --color-coral:        var(--coral);
    --color-coral-dark:   #e04a28;
    --color-driftwood:    var(--wood);
    --color-sky:          #b8dce8;
    --color-water:        #7ebfd4;
    --color-dark:         var(--navy);
    --color-text:         #2c1a0e;
    --color-text-muted:   #7a6a55;
    --color-white:        #fffdf8;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif:   'Libre Baskerville', 'Playfair Display', Georgia, serif;
    --font-sans:    'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & shape */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   28px;
    --radius-pill: 999px;

    --shadow-sm:  0 2px 8px rgba(7,19,27,.18);
    --shadow-md:  0 8px 28px rgba(7,19,27,.25);
    --shadow-lg:  0 20px 64px rgba(7,19,27,.35);

    --nav-height:    64px;

    --transition: 0.25s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-sans);
    background-color: var(--navy);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--reef);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.1;
    font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

p { line-height: 1.75; color: var(--muted); }

.serif  { font-family: var(--font-serif); }
.italic { font-style: italic; }
.muted  { color: var(--muted); }

/* ── LAYOUT ───────────────────────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 9vw, 7rem); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p  { color: var(--muted); font-family: var(--font-serif); font-style: italic; margin-top: 0.75rem; }

.divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--reef), var(--gold));
    border-radius: var(--radius-pill);
    margin: 0.75rem auto 0;
}

/* ── NAVIGATION ───────────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 900;
    background: rgba(7,19,27,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
    background: rgba(7,19,27,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--ink) !important;
    gap: 2px;
}

.brand-ar {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--ink);
    text-transform: uppercase;
}

.brand-text {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--reef);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.78);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--reef); }

.nav-cta {
    background: var(--coral) !important;
    color: white !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    transition: background var(--transition) !important, transform var(--transition) !important;
}
.nav-cta:hover {
    background: #e04a28 !important;
    color: white !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    display: block;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    padding-top: var(--nav-height);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slideshow background */
.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease;
    z-index: 0;
}

.hero-slide.active { opacity: 1; }

/* Fallback gradient — only visible when slide images fail to load */
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(7,19,27,0.88) 0%, rgba(18,48,59,0.60) 55%, rgba(73,209,199,0.10) 100%),
        url('/images/hero-bg.svg') center / cover no-repeat;
    z-index: -1;
}

/* Overlay: just dark enough for text legibility, light enough to see the photo */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 68% 42%, rgba(73,209,199,0.10), transparent 38%),
        linear-gradient(105deg, rgba(7,19,27,0.62) 0%, rgba(7,19,27,0.22) 55%, rgba(7,19,27,0.45) 100%),
        linear-gradient(0deg, rgba(7,19,27,0.80) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    box-sizing: border-box;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--reef);
    margin-bottom: 1.2rem;
}

.hero h1 {
    color: white;
    text-shadow: 0 12px 44px rgba(0,0,0,0.5);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
}

.hero-tagline {
    font-size: 1.18rem;
    color: rgba(248,244,234,0.78);
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-inline: auto;
    display: block;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--reef);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.55;
    animation: bob 2.5s ease-in-out infinite;
}

.hero-scroll-hint i { font-size: 0.8rem; }

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}
.btn-primary:hover {
    background: #e04a28;
    border-color: #e04a28;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-teal {
    background: var(--reef);
    color: #06231f;
    border-color: var(--reef);
    font-weight: 800;
}
.btn-teal:hover {
    background: var(--seafoam);
    border-color: var(--seafoam);
    color: #06231f;
}

/* ── WAVE DIVIDERS ────────────────────────────────────────────────── */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.dark-to-light  { background: var(--navy); }
.light-to-sand  { background: var(--color-white); }

/* ── ALBUMS SECTION ───────────────────────────────────────────────── */
.albums-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 100%);
    color: white;
}
.albums-section h2    { color: var(--sand); }
.albums-section .divider { background: linear-gradient(90deg, var(--reef), var(--gold)); }

.albums-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 960px;
    margin-inline: auto;
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.album-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.album-card.featured {
    border-color: rgba(73,209,199,0.3);
    box-shadow: 0 0 0 1px rgba(73,209,199,0.1);
}

.album-art-wrap { position: relative; }

.album-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--reef);
    color: #06231f;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.22rem 0.7rem;
    border-radius: var(--radius-pill);
}

.album-info h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 0.2rem; }

.album-meta {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--reef);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.album-desc {
    font-size: 0.9rem;
    color: rgba(248,244,234,0.60);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.album-stream-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 700;
    border: 1.5px solid;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}

.stream-link.apple  { border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.75); }
.stream-link.apple:hover  { background: white; color: #1a1a1a; border-color: white; }
.stream-link.qobuz  { border-color: rgba(73,209,199,0.35); color: var(--reef); }
.stream-link.qobuz:hover  { background: var(--reef); color: #06231f; border-color: var(--reef); }
.stream-link.iheart { border-color: rgba(73,209,199,0.35); color: var(--reef); }
.stream-link.iheart:hover { background: var(--reef); color: #06231f; border-color: var(--reef); }

/* Tracklist */
.album-tracklist { margin: 0.75rem 0 1rem; }
.tracklist-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(248,244,234,0.3);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.tracklist { list-style: none; counter-reset: track; }
.tracklist li {
    counter-increment: track;
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(248,244,234,0.60);
    padding: 0.22rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tracklist li::before {
    content: counter(track) ".";
    color: rgba(248,244,234,0.22);
    margin-right: 0.6rem;
    flex-shrink: 0;
    font-size: 0.74rem;
}
.tracklist li span {
    color: rgba(248,244,234,0.28);
    font-size: 0.74rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
    font-variant-numeric: tabular-nums;
}

/* Single card */
.single-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: background var(--transition);
}
.single-card:hover { background: rgba(255,255,255,0.08); }
.single-info h3 { font-size: 1rem; color: var(--ink); margin-bottom: 0.15rem; }
.single-label {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--reef);
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

/* ── MUSIC SECTION ────────────────────────────────────────────────── */
.music-section {
    background: linear-gradient(180deg, var(--deep) 0%, #061015 100%);
    color: white;
}
.music-section h2 { color: var(--sand); }
.music-section .divider { background: linear-gradient(90deg, var(--reef), var(--gold)); }
.music-section .section-header p { color: rgba(248,244,234,0.50); }

/* ── ABOUT SECTION ────────────────────────────────────────────────── */
.about-section { background: var(--sand); }
.about-section h2     { color: var(--navy); }
.about-section .divider { background: linear-gradient(90deg, var(--coral), var(--gold)); }
.about-section p      { color: var(--color-text); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--color-sky);
    position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder { display: none; width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.about-image.no-photo img { display: none; }
.about-image.no-photo .about-image-placeholder { display: block; }
.about-image-placeholder svg { width: 100%; height: auto; display: block; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; color: var(--color-text); }

/* ── NEWS / BLOG ──────────────────────────────────────────────────── */
.news-section { background: var(--sand); }
.news-section h2 { color: var(--navy); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card-image { aspect-ratio: 16/9; background: var(--color-sky); overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.04); }
.news-card-body { padding: 1.25rem; }
.news-card-date {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.news-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.news-card-excerpt { font-size: 0.86rem; color: var(--color-text); line-height: 1.65; }

/* ── SHOWS ────────────────────────────────────────────────────────── */
.shows-section {
    background: linear-gradient(180deg, var(--storm) 0%, var(--navy) 100%);
    color: white;
}
.shows-section h2 { color: var(--sand); }
.shows-section .divider { background: linear-gradient(90deg, var(--reef), var(--gold)); }

.shows-list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.show-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--reef);
    transition: background var(--transition), transform var(--transition);
}
.show-item:hover { background: rgba(73,209,199,0.08); transform: translateX(3px); }

.show-date { text-align: center; line-height: 1; }
.show-date .month {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--reef);
    font-weight: 700;
}
.show-date .day {
    font-size: 2.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.show-info .venue   { font-weight: 700; color: white; font-size: 1rem; }
.show-info .location { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

/* ── MERCH ────────────────────────────────────────────────────────── */
.merch-section { background: var(--sand); }
.merch-section h2 { color: var(--navy); }
.merch-section .divider { background: linear-gradient(90deg, var(--coral), var(--gold)); }

/* ── GALLERY ──────────────────────────────────────────────────────── */
.gallery-section {
    background: linear-gradient(180deg, var(--sand) 0%, var(--sand-dark) 100%);
}
.gallery-section h2 { color: var(--navy); }

.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    filter: saturate(0.88);
}
.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    filter: saturate(1);
}

/* ── SOCIAL LINKS ─────────────────────────────────────────────────── */
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

.social-links a {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    color: white;
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition);
}
.social-links a:hover { background: var(--reef); color: #06231f; transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
    background: #02080b;
    color: var(--muted);
    padding: 3.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
    letter-spacing: 0.06em;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.40); font-style: italic; }
.footer-social  { justify-self: center; }

.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; justify-self: end; }
.footer-nav a { color: rgba(255,255,255,0.50); font-size: 0.88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--reef); }

.footer-bottom {
    text-align: center;
    padding: 1.1rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.25);
}

/* ── ADMIN LAYOUT ─────────────────────────────────────────────────── */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 0;
    background: #f4f6f9;
}

.admin-sidebar {
    width: 240px;
    background: var(--navy);
    color: white;
    flex-shrink: 0;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    display: flex;
    flex-direction: column;
    z-index: 800;
    overflow-y: auto;
    border-right: 1px solid rgba(73,209,199,0.1);
}

.admin-sidebar-brand { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-brand p { font-family: var(--font-display); font-size: 1.1rem; color: white; margin: 0; }
.admin-sidebar-brand small { font-size: 0.7rem; color: var(--reef); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }

.admin-sidebar-nav { flex: 1; padding: 1rem 0; list-style: none; }
.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    color: rgba(255,255,255,0.58);
    font-size: 0.86rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
}
.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active { color: white; background: rgba(255,255,255,0.06); }
.admin-sidebar-nav a.active { border-right: 3px solid var(--reef); color: var(--reef); }

.admin-content { margin-left: 240px; flex: 1; padding: 2rem; }

.admin-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.admin-header h1 { font-size: 1.6rem; color: var(--navy); }

.admin-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 1px 6px rgba(7,19,27,0.08);
    border: 1px solid rgba(7,19,27,0.06);
}

/* Admin forms */
.form-group  { margin-bottom: 1.25rem; }
.form-label  { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #d4d8dc;
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.9rem;
    background: white;
    color: var(--color-text);
    transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--reef); box-shadow: 0 0 0 3px rgba(73,209,199,0.15); }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid #eef0f2; font-size: 0.88rem; }
.table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); background: #f8f9fb; font-weight: 700; }
.table tr:hover td { background: #f4f9f9; }

/* Alerts */
.alert {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert-success { background: #d4f5ed; color: #1a5c40; border: 1px solid #b2e8d8; }
.alert-danger  { background: #fde8e4; color: #8c2010; border: 1px solid #f8c8c0; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .albums-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .album-card  { flex-direction: row; }
    .album-art-wrap { width: 120px; flex-shrink: 0; }
    .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-social { justify-self: start; }
    .footer-nav { justify-self: start; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 768px) {
    .nav-toggle  { display: flex; }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(7,19,27,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }

    .hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }
    .hero-tagline { font-size: 1rem; max-width: 100%; }

    .show-item   { grid-template-columns: 60px 1fr; }
    .show-item .btn { display: none; }

    .gallery-grid { columns: 2; }

    .hero-scroll-hint { display: none; }

    .album-card { flex-direction: column; }
    .album-art-wrap { width: 100%; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
    .hero-tagline { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .gallery-grid { columns: 1; }
    .news-grid    { grid-template-columns: 1fr; }
    .albums-grid  { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROTOTYPE SECTIONS  v3
   Intro · Feature Cards · Spotify · Merch Products · Fooshin
   Journal Masonry · Contact · Scroll Reveal
═══════════════════════════════════════════════════════════════════ */

/* ── EYEBROW LABELS ────────────────────────────────────────────────── */
.eyebrow {
    color: var(--reef);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 800;
    font-size: 0.78rem;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}
/* Merch / contact light sections */
.merch-section .eyebrow,
.contact-section   .eyebrow { color: #246c69; }

/* ── INTRO SECTION ─────────────────────────────────────────────────── */
.intro-section {
    background: linear-gradient(180deg, var(--navy), var(--deep));
    padding-block: clamp(4rem, 8vw, 7rem);
}
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.intro-split h2 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    color: var(--ink);
    line-height: 1.03;
    margin: 0;
}
.intro-split > div > p {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── FEATURE CARDS ─────────────────────────────────────────────────── */
.feature-cards-wrap {
    background: var(--deep);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
    position: relative;
    z-index: 2;
    margin-top: -55px;
}
.feature-card {
    position: relative;
    min-height: 430px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow-lg);
    display: block;
    text-decoration: none;
    color: inherit;
}
.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    filter: saturate(0.9) contrast(1.08);
    transition: transform 0.5s ease;
}
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.86), transparent 65%);
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card-label,
.feature-card h3 {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    margin: 0;
}
.feature-card-label {
    bottom: 5.25rem;
    color: var(--reef);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
}
.feature-card h3 {
    bottom: 1.25rem;
    color: white;
    font-size: 1.3rem;
    line-height: 1.2;
}

/* ── MUSIC SECTION — SPOTIFY GRID ──────────────────────────────────── */
.music-spotify-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.75rem;
    align-items: stretch;
    margin-bottom: 3rem;
}
.spotify-album-card {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.04);
    display: flex;
    flex-direction: column;
}
.spotify-album-card img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}
.spotify-album-card-body {
    padding: 1.75rem;
    flex: 1;
}
.spotify-album-card-body h3 { color: var(--ink); margin-bottom: 0.5rem; }
.spotify-album-card-body p  { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.spotify-album-card-body .text-link { color: var(--reef); font-weight: 700; }
.spotify-album-card-body .text-link:hover { color: var(--gold); }
.spotify-embed-wrap {
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: stretch;
}
.spotify-embed-wrap iframe {
    border-radius: var(--radius-md);
    flex: 1;
    width: 100%;
    min-height: 352px;
}

/* ── MERCH PRODUCT CARDS ───────────────────────────────────────────── */
/* Override existing dark merch-section — prototype uses light sand */
.merch-section { background: var(--sand); color: #10202a; }
.merch-section h2 { color: #10202a; }
.merch-section .divider { background: linear-gradient(90deg, var(--coral), var(--gold)); }
.merch-section .section-header p { color: #516168; font-style: normal; }

.merch-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.merch-product {
    background: white;
    border-radius: var(--radius-md);
    padding: 0.9rem;
    box-shadow: 0 16px 45px rgba(4,30,36,.12);
    transition: transform var(--transition), box-shadow var(--transition);
}
.merch-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4,30,36,.18);
}
.merch-product img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    width: 100%;
}
.merch-product h3 {
    font-size: 1rem;
    color: #10202a;
    margin: 1rem 0 0.25rem;
    line-height: 1.2;
}
.merch-product > p {
    font-size: 0.82rem;
    color: #516168;
    margin: 0 0 0.9rem;
    line-height: 1.5;
}
.merch-product button {
    border: 0;
    border-radius: var(--radius-pill);
    background: #10202a;
    color: white;
    padding: 0.7rem 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-sans);
    transition: background var(--transition);
}
.merch-product button:hover { background: var(--navy); }

/* ── FOOSHIN SECTION ───────────────────────────────────────────────── */
.fooshin-section {
    background: var(--navy);
    padding-block: clamp(4rem, 9vw, 7rem);
}
.fooshin-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.fooshin-text h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.03;
}
.fooshin-text > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.75rem; }
.image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    align-items: end;
}
.image-stack img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.image-stack img:first-child  { height: 460px; }
.image-stack img:last-child   { height: 340px; margin-top: 80px; }

/* ── JOURNAL / GALLERY SECTION ─────────────────────────────────────── */
.journal-section {
    background: linear-gradient(180deg, var(--storm) 0%, var(--navy) 100%);
}
.journal-section h2 { color: var(--sand); }
.journal-section .section-header p { color: var(--muted); font-style: italic; }
.journal-section .divider { background: linear-gradient(90deg, var(--reef), var(--gold)); }

.journal-masonry {
    columns: 3 240px;
    column-gap: 1rem;
}
.journal-masonry img {
    break-inside: avoid;
    border-radius: var(--radius-md);
    margin: 0 0 1rem;
    width: 100%;
    cursor: zoom-in;
    filter: saturate(0.9) contrast(1.04);
    transition: filter var(--transition), transform var(--transition);
    display: block;
}
.journal-masonry img:hover {
    filter: saturate(1.05);
    transform: scale(1.01);
}

/* ── NEWS SECTION — DARK VERSION ───────────────────────────────────── */
/* Override the sand background to keep page rhythm varied */
.news-section { background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 100%); }
.news-section h2 { color: var(--sand); }
.news-section .divider { background: linear-gradient(90deg, var(--reef), var(--gold)); }
.news-section .section-header p { color: var(--muted); }

/* ── CONTACT SECTION ───────────────────────────────────────────────── */
.contact-section {
    background: var(--sand);
    color: #10202a;
    padding-block: clamp(4rem, 9vw, 7rem);
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
    align-items: start;
}
.contact-heading h2 {
    color: #10202a;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-top: 0.5rem;
}
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    display: grid;
    gap: 1rem;
}
.contact-form-wrap label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #10202a;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    font: inherit;
    border: 1.5px solid #d9d1c4;
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.9rem;
    background: #fffdf8;
    color: #10202a;
    transition: border-color var(--transition);
    font-size: 0.9rem;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #246c69;
    box-shadow: 0 0 0 3px rgba(36,108,105,.12);
}
.contact-form-wrap .btn-submit {
    border: 0;
    border-radius: var(--radius-pill);
    background: #10202a;
    color: white;
    padding: 0.9rem 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--transition);
    justify-self: stretch;
    text-align: center;
}
.contact-form-wrap .btn-submit:hover { background: var(--navy); }

/* ── SCROLL REVEAL ─────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE — PROTOTYPE SECTIONS ──────────────────────────────── */
@media (max-width: 900px) {
    .intro-split        { grid-template-columns: 1fr; gap: 2rem; }
    .feature-cards      { grid-template-columns: 1fr; margin-top: 0; padding-top: 2.5rem; }
    .feature-card       { min-height: 320px; }
    .music-spotify-grid { grid-template-columns: 1fr; }
    .merch-product-grid { grid-template-columns: repeat(2, 1fr); }
    .fooshin-split      { grid-template-columns: 1fr; gap: 2.5rem; }
    .image-stack        { grid-template-columns: 1fr; }
    .image-stack img:first-child,
    .image-stack img:last-child { height: auto; margin: 0; }
    .contact-split      { grid-template-columns: 1fr; gap: 2.5rem; }
    .journal-masonry    { columns: 2; }
}
@media (max-width: 520px) {
    .merch-product-grid { grid-template-columns: 1fr; }
    .journal-masonry    { columns: 1; }
}
