/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background: #080808;
    color: #f0f0f0;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIABLES ===== */
:root {
    --black: #080808;
    --off-black: #101010;
    --card-bg: #141414;
    --white: #f0f0f0;
    --muted: #666;
    --green: #3da162;
    --green-light: #58df8a;
    --font-impact: 'Bebas Neue', sans-serif;
    --font-head: 'Cabin', sans-serif;
    --font-body: 'Lato', sans-serif;
    --nav-h: 72px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(12px);
    border-color: rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    color: var(--white);
    transition: color 0.2s;
}
.nav-logo .slash { color: var(--green); font-weight: 400; }
.nav-logo:hover { color: var(--green-light); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}
.nav-links a {
    display: block;
    padding: 7px 18px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.65);
    border: 1px solid var(--green);
    margin-left: -1px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(61,161,98,0.18);
    z-index: 1;
    position: relative;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 1px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-light); color: #080808; }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240,240,240,0.3);
}
.btn-outline:hover {
    background: rgba(240,240,240,0.07);
    border-color: rgba(240,240,240,0.7);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 10s ease;
}
.hero:hover .hero-img { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.25) 0%,
        rgba(8,8,8,0.05) 35%,
        rgba(8,8,8,0.65) 70%,
        rgba(8,8,8,0.97) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 56px 88px;
    max-width: 860px;
}
.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    font-weight: 300;
    display: block;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(4.5rem, 11vw, 10rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: rgba(240,240,240,0.4);
    text-transform: uppercase;
    margin-bottom: 44px;
    font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 44px;
    right: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0.45;
}
.hero-scroll span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    color: var(--white);
}
.hero-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(240,240,240,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.9; transform: scaleY(0.7); }
}

/* ===== SECTION UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}
.section-eyebrow {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
    font-weight: 400;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.05;
}

/* ===== ALBUM ANNOUNCE ===== */
.album-announce {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.album-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}
.album-announce:hover .album-bg { transform: scale(1.03); }
.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.65) 50%,
        rgba(8,8,8,0.18) 100%
    );
}
.album-content {
    position: relative;
    z-index: 2;
    padding: 96px 56px;
    max-width: 580px;
}
.album-badge {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 7px 16px;
    margin-bottom: 32px;
    font-weight: 400;
}
.album-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 22px;
}
.album-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(240,240,240,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 400px;
}

/* ===== STREAMING SECTION ===== */
.streaming {
    padding: 112px 0;
    background: var(--black);
    text-align: center;
}
.streaming .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.streaming .section-title { margin-bottom: 8px; }
.streaming-release {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    font-weight: 300;
    margin-bottom: 52px;
}
.streaming-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 1px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.25s;
}
.streaming-btn svg { flex-shrink: 0; }
.streaming-btn.spotify { background: #1DB954; color: #000; }
.streaming-btn.spotify:hover { background: #1ed760; }
.streaming-btn.apple {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}
.streaming-btn.apple:hover { background: rgba(255,255,255,0.12); }
.streaming-btn.amazon {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}
.streaming-btn.amazon:hover { background: rgba(255,255,255,0.12); }

/* ===== STORIES GRID ===== */
.stories-section {
    padding: 112px 0;
    background: var(--off-black);
}
.stories-header {
    margin-bottom: 56px;
}
.stories-header .section-title { margin-bottom: 10px; }
.stories-header-sub {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.03em;
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.story-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}
.story-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
    filter: grayscale(20%);
}
.story-card:hover .story-img {
    transform: scale(1.07);
    filter: grayscale(0%);
}
.story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,8,8,0.97) 0%,
        rgba(8,8,8,0.45) 50%,
        rgba(8,8,8,0.08) 100%
    );
    transition: background 0.3s;
}
.story-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(8,8,8,0.98) 0%,
        rgba(8,8,8,0.65) 60%,
        rgba(8,8,8,0.12) 100%
    );
}
.story-info {
    position: relative;
    z-index: 2;
    padding: 36px 30px;
}
.story-tag {
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
}
.story-info h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}
.story-info p {
    font-size: 0.8rem;
    color: rgba(240,240,240,0.55);
    line-height: 1.65;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s, transform 0.35s;
    margin-bottom: 18px;
}
.story-card:hover .story-info p { opacity: 1; transform: translateY(0); }
.story-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
}
.story-card:hover .story-read { opacity: 1; transform: translateX(0); }
.story-read::after {
    content: '→';
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.story-card:hover .story-read::after { transform: translateX(4px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.3) 0%,
        rgba(8,8,8,0.1) 30%,
        rgba(8,8,8,0.75) 75%,
        rgba(8,8,8,1) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 56px 64px;
}
.page-hero-content .section-eyebrow { margin-bottom: 14px; }
.page-hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}

/* ===== ARTICLE LAYOUT ===== */
.article-section {
    padding: 80px 0 100px;
    background: var(--black);
}
.article-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}
.article-body { color: rgba(240,240,240,0.75); }
.article-body h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin: 48px 0 18px;
    line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 24px;
}
.article-body p a { color: var(--green-light); border-bottom: 1px solid rgba(88,223,138,0.3); }
.article-body p a:hover { color: var(--white); }
.article-body blockquote {
    border-left: 2px solid var(--green);
    padding-left: 24px;
    margin: 40px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(240,240,240,0.55);
    line-height: 1.7;
    font-weight: 300;
}
.article-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}
.sidebar-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 2px;
}
.sidebar-card {
    background: var(--card-bg);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
}
.sidebar-card-label {
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    display: block;
}
.sidebar-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.sidebar-card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
}

/* ===== LISTEN PAGE ===== */
.listen-section {
    padding: 96px 0;
    background: var(--black);
}
.listen-section + .listen-section { padding-top: 0; }
.discography {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
    margin-top: 48px;
}
.album-card {
    background: var(--card-bg);
    overflow: hidden;
    transition: background 0.25s;
    cursor: pointer;
}
.album-card:hover { background: #1c1c1c; }
.album-art {
    width: 100%;
    aspect-ratio: 1;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}
.album-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s;
    filter: grayscale(30%);
}
.album-card:hover .album-art-img {
    transform: scale(1.04);
    filter: grayscale(0%);
}
.album-art-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.12);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.album-info {
    padding: 22px 22px 26px;
}
.album-info h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.album-info span {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    font-weight: 300;
}
.embed-wrapper {
    margin-top: 56px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 48px;
}
.embed-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    display: block;
}
.embed-placeholder {
    background: #111;
    border: 1px dashed rgba(255,255,255,0.1);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

/* ===== STREAMING CIRCLES ===== */
.stream-circles {
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 56px;
    align-items: center;
    z-index: 2;
}
.stream-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.75);
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.stream-circle:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
.stream-circle.spotify    { border-color: rgba(29,185,84,0.4);   background: rgba(29,185,84,0.06);   color: rgba(255,255,255,0.85); }
.stream-circle.apple      { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.85); }
.stream-circle.bandcamp   { border-color: rgba(29,160,195,0.4);  background: rgba(29,160,195,0.06);  color: rgba(255,255,255,0.85); }
.stream-circle.instagram  { border-color: rgba(228,64,95,0.4);   background: rgba(228,64,95,0.06);   color: rgba(255,255,255,0.85); }
.stream-circle.facebook   { border-color: rgba(24,119,242,0.4);  background: rgba(24,119,242,0.06);  color: rgba(255,255,255,0.85); }
.stream-circle.youtube    { border-color: rgba(255,0,0,0.4);     background: rgba(255,0,0,0.06);     color: rgba(255,255,255,0.85); }

.stream-row { display: flex; gap: 36px; align-items: center; justify-content: center; }

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    padding: 72px 0 52px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 40px;
}
.footer-brand .footer-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-brand .footer-tag {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 300;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.footer-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.45);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green-light); }
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-start;
}
.footer-social a {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.4);
    transition: color 0.2s;
    padding: 4px 0;
}
.footer-social a:hover { color: var(--green-light); }
.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.65rem;
    color: rgba(240,240,240,0.2);
    letter-spacing: 0.1em;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .article-grid { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .sidebar-img { aspect-ratio: 16/9; max-height: 420px; width: 100%; }
    .stories-grid { grid-template-columns: 1fr 1fr; }
    .story-info p { opacity: 1; transform: none; }
    .story-read { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    /* Full-screen sections on mobile */
    .hero {
        height: 100vh; height: 100svh;
        min-height: 0;
    }
    #new-album {
        height: 100vh !important; height: 100svh !important;
        min-height: 0 !important;
    }
    #streaming {
        height: 100vh !important; height: 100svh !important;
        min-height: 0 !important;
    }

    /* Nav — no backdrop-filter on mobile (including scrolled state): it creates a new CSS
       containing block which breaks position:fixed on .nav-links */
    .nav,
    .nav.scrolled { background: rgba(8,8,8,0.96); backdrop-filter: none; -webkit-backdrop-filter: none; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: flex;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0; bottom: 0;
        background: rgba(8,8,8,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        border: none;
        margin: 0;
        padding: 12px 24px;
        touch-action: manipulation;
    }
    .nav-links a:hover, .nav-links a.active { background: none; }

    /* Hero */
    /* Push label well above the photo credit (which sits at bottom:44px, ~30px tall) */
    .hero-content { padding: 0 24px calc(155px + env(safe-area-inset-bottom, 0px)); }
    .hero-scroll { display: none; }

    /* Photo credit — keep at bottom corner, clear of label text */
    .photo-credit { bottom: 44px !important; right: 16px !important; }

    /* Streaming circles — move above the artist figure (~top 20% of section) */
    .stream-icon-wrap {
        position: absolute !important;
        top: 20% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 14px !important;
        width: 210px !important;
    }
    .stream-row { display: contents !important; }
    .stream-circle { width: 56px !important; height: 56px !important; flex-shrink: 0 !important; }
    .stream-circle svg { width: 24px !important; height: 24px !important; }

    /* Section text padding — push labels up above the photo credit strip */
    .stream-label-mobile { padding: 0 24px 145px !important; }
    .album-text-mobile { padding: 0 24px 145px !important; }
    .section-pad-mobile { padding-left: 24px !important; padding-right: 24px !important; }

    /* Stories */
    .stories-grid { grid-template-columns: 1fr; gap: 3px; }
    .story-card { aspect-ratio: 4/3; }
    .story-info p { opacity: 1; transform: none; }
    .story-read { opacity: 1; transform: none; }

    /* Inner page hero */
    .page-hero-content { padding: 0 24px 40px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
