/* ============================================================
   Lisa Knapp + Gerry Diver — Hinterland (ALT VIBE)
   Tasteful, moody, editorial, asymmetrical
   ============================================================ */

:root {
    --bg-dark: #080A0B;   /* Extremely dark, almost black, obsidian */
    --bg-darker: #050607;
    --accent:  #C58D42;   /* Ochre */
    --ink:     #e8eceb;
    --ink-muted: #8a969b;
    --sans:   "Helvetica Neue", Helvetica, Arial, sans-serif;
    --serif:  "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-dark); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.6; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ---------- Header (Floating & Minimal) ---------- */
.site-header { width: 100%; position: absolute; top: 0; left: 0; z-index: 30; }
.site-header__inner { display: flex; justify-content: space-between; align-items: center; padding: 40px; }
.nav { display: flex; gap: 40px; }
.nav a { font-size: 14px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.6; }
.nav a:hover { opacity: 1; color: var(--accent); }
.site-header__logo img { height: 24px; filter: brightness(0) invert(1); opacity: 0.9; }

/* ---------- Hero ---------- */
.hero--alt {
    min-height: 85vh; /* Shortened slightly to force the next section to peek */
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed; /* Subtle parallax effect */
    background-repeat: no-repeat;
    position: relative;
}
/* Fade out the bottom of the hero into the black background */
.hero--alt::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30vh;
    background: linear-gradient(to bottom, rgba(8,10,11,0) 0%, rgba(8,10,11,1) 100%);
}

/* ---------- Scroll Cue ---------- */
.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
    animation: float-cue 2.5s infinite ease-in-out;
}
.scroll-cue__text {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.scroll-cue__line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
}
@keyframes float-cue {
    0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 8px); }
}

/* ---------- Sections ---------- */
.band--obsidian { background: var(--bg-dark); position: relative; z-index: 10; }

/* ---------- Art Layout (Asymmetrical) ---------- */
.art-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
    padding: 40px 40px 140px;
}
.art-layout__text {
    padding-right: 20px;
}
.art-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    line-height: 1;
}
.art-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 40px 0;
}
.quote-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.quote-item {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 24px;
}
.quote-item .stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 8px;
}
.quote-item .src {
    font-family: var(--sans);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-muted);
}
.art-layout__cover {
    position: relative;
    /* Pull the image up aggressively so it breaks the horizon of the hero image */
    transform: translateY(-160px);
    z-index: 40;
}
.art-layout__cover img {
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    filter: contrast(1.05) brightness(0.9);
}

/* ---------- Minimal Listen Section ---------- */
.listen-minimal {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 140px;
}
.listen-minimal__player {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    margin-bottom: 60px;
    /* Subtle framing */
    border: 1px solid rgba(255,255,255,0.03);
}
.listen-minimal__action {
    text-align: center;
}
.btn-minimal {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 8px;
    transition: all 0.4s ease;
}
.btn-minimal:hover {
    color: var(--accent);
    padding-bottom: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-darker);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.site-footer__logo img { height: 18px; filter: brightness(0) invert(1); opacity: 0.4; }
.site-footer__mailing-list { max-width: 320px; margin: 0 auto; text-align: center; }
.site-footer__mailing-list-label { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.site-footer__mailing-list input[type="email"] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 2px;
}
.site-footer__mailing-list input[type="email"]:focus { outline: none; border-color: var(--accent); }
.site-footer__mailing-list button,
.site-footer__mailing-list input[type="submit"] {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 2px;
    cursor: pointer;
}
.site-footer__contact a { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-muted); }
.site-footer__credit { font-size: 9px; letter-spacing: 0.2em; color: #333; margin: 0; }

/* ---------- Inner Pages (Gigs, etc.) ---------- */
.inner-page {
    padding-top: 140px;
    min-height: 60vh;
}
.inner-page__title {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.bit-widget-wrap {
    max-width: 800px;
    margin: 0 auto 100px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .site-header__inner { padding: 20px; }
    
    .hero--alt { 
        min-height: 60vw; /* Scales proportionately with the width of the phone */
        background-size: contain;
        background-position: center top;
        background-color: var(--bg-dark);
    }
    
    .art-layout { grid-template-columns: 1fr; gap: 60px; padding-top: 40px; }
    
    /* Pull the cover up slightly on mobile so it still breaks the horizon, but fits the smaller screen */
    .art-layout__cover { transform: translateY(-20px); grid-row: 1; margin: 0 auto; max-width: 280px; } 
    
    .art-layout__text { padding-right: 0; text-align: center; }
    .art-title { font-size: clamp(36px, 12vw, 48px); }
    .quote-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 20px; }
    .art-divider { margin: 30px auto; }
    
    .listen-minimal { padding: 0 20px 80px; }
}
