﻿/* ── Reset ──────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
    outline: none;
}

:root {
    --bodybg: #FAF5ED;
    --gold: #F4A34B;
    --gold-mid: #C8973A;
    --gold-light: #E8B96A;
    --gold-dim: rgba(200,151,58,0.35);
    --dark: #1B0E08;
    --dark-fainted: #695A50;
    --cream: #F5EDD8;
    --greybg: #EFEAE2;
    --ease: cubic-bezier(0.16,1,0.3,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Container ──────────────────────────────── */
.container {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-inline: 4rem;
    }
}


.view-big {
    display: none;
}

/* .view-small{
      display:block;
    } */

@media (min-width: 768px) {
    .view-big {
        display: block;
    }

    .view-small {
        display: none;
    }
}

/* ── NAV ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease), height 0.35s var(--ease);
}

    /* Scrolled state — shared across every page */
    .nav.is-scrolled {
        background: rgba(250, 245, 237, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 1px 0 rgba(26,18,8,0.06), 0 12px 32px rgba(26,18,8,0.07);
    }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: "Sassy Frass", cursive;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 50px);
    color: var(--dark);
    line-height: 1;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeDown 0.8s 0.1s var(--ease) forwards;
}


/* Centre links */
.nav__links {
    display: none;
    list-style: none;
    gap: 2.25rem;
    opacity: 0;
    animation: fadeDown 0.8s 0.3s var(--ease) forwards;
}

    .nav__links a {
        font-family: 'Inter', sans-serif;
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--dark);
        text-decoration: none;
        letter-spacing: 0.01em;
        transition: opacity 0.2s;
    }

        .nav__links a:hover {
            opacity: 0.6;
        }

    .nav__links li.is-active a {
        color: var(--cream);
        font-weight: 500;
    }

    .nav__links a:hover {
        opacity: 0.6;
    }

.nav.is-scrolled li.is-active a {
    color: var(--gold-mid);
}

/* Book CTA */
.nav__cta {
    display: none;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--dark);
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.6875rem 1.25rem;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeDown 0.8s 0.35s var(--ease) forwards;
}

    .nav__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .nav__cta svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Burger (mobile) */
.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
    opacity: 0;
    animation: fadeDown 0.8s 0.3s var(--ease) forwards;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--dark);
        transition: transform 0.3s var(--ease), opacity 0.3s;
        transform-origin: center;
    }

    .nav__burger.is-open {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(245, 237, 216, 0.08);
        border: 1px solid rgba(245, 237, 216, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s;
    }

        .nav__burger.is-open span {
            width: 15px;
            background: white;
        }

            .nav__burger.is-open span:nth-child(1) {
                transform: translateY(6.5px) rotate(45deg);
            }

            .nav__burger.is-open span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .nav__burger.is-open span:nth-child(3) {
                transform: translateY(-6.5px) rotate(-45deg);
            }

/* ── Mobile drawer ── */
.nav__drawer {
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,0.97);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

    .nav__drawer.is-open {
        opacity: 1;
        visibility: visible;
    }


.nav__drawer-close:hover {
    background: rgba(245,237,216,0.16);
}

.nav__drawer-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--cream);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav__drawer a {
    font-family: 'Satoshi', serif;
    font-size: clamp(2rem, 8vw, 2.75rem);
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

    .nav__drawer a:hover {
        color: var(--gold-light);
    }

.nav__drawer .drawer-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--cream);
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

    .nav__drawer .drawer-cta:hover {
        background: var(--gold-light);
    }

/* ════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    /* Warm golden textured background — replaces the image bg */
    background: #C8973A;
}

/* ── Background image ── */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

/* Radial vignette — darkens edges, lets face pop */
.hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
    /* bottom fade to cream */
    linear-gradient(to bottom, transparent 55%, rgba(197,167,118,0.45) 78%, rgba(220,195,148,0.75) 100% ), linear-gradient(to top, transparent 55%, rgba(197,167,118,0.45) 78%, rgba(220,195,148,0.75) 100% ),
    /* left fade */
    linear-gradient(to right, rgba(185,148,82,0.55) 0%, transparent 30% ),
    /* right fade */
    linear-gradient(to left, rgba(185,148,82,0.55) 0%, transparent 30% ),
    /* top fade */
    linear-gradient(to bottom, rgba(170,135,70,0.3) 0%, transparent 18% );
    pointer-events: none;
}



/* ── "RAHAMA · OUT NOW" pill ── */
.hero__badge {
    position: absolute;
    top: 30%;
    left: 3.5%;
    transform: translateY(-30%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 245, 237, 0.4);
    border: 1px solid rgba(221, 214, 205, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    opacity: 0;
    animation: fadeRight 0.9s 0.7s var(--ease) forwards;
}

    .hero__badge:hover {
        background: rgba(245,237,216,0.9);
        transform: translateY(-50%) scale(1.02);
    }

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(200,151,58,0.25);
    animation: pulse 2.5s 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(200,151,58,0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(200,151,58,0.12);
    }
}

.hero__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
}

/* ── Scroll indicator ── */
.hero__scroll {
    position: absolute;
    bottom: 9rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0;
    animation: fadeUp 0.9s 1.0s var(--ease) forwards;
}

.hero__scroll-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(26,18,8,0.9);
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(26,18,8,0.5), transparent);
    animation: scrollPulse 2.2s 2s ease-in-out infinite;
}

/* ── Right side vertical text ── */
.hero__tagline {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeLeft 0.9s 0.8s var(--ease) forwards;
}

.hero__tagline-words {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.hero__tagline-word {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26,18,8,0.55);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.hero__tagline-sep {
    font-size: 0.5rem;
    color: var(--gold);
    writing-mode: vertical-rl;
    line-height: 1;
}

.hero__tagline-line {
    width: 1px;
    height: 40px;
    background: rgba(26,18,8,0.3);
    margin-top: 0.25rem;
}

/* ── Mini music player ── */
.hero__player {
    position: absolute;
    right: 50%;
    transform : translate(50%) !important;
    bottom: 1.5rem;
    z-index: 10;
    width: min(88%, 340px);
    background: rgba(250, 245, 237, 0.55);
    border: 1px solid rgba(221, 214, 205, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 1rem 1.1rem 1.1rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s var(--ease) forwards;
    touch-action: pan-y;
}

.hero__player-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero__player-play {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease;
}

    .hero__player-play:hover {
        transform: scale(1.06);
    }

    .hero__player-play svg {
        width: 16px;
        height: 16px;
        fill: #fff;
    }

    .hero__player-play .icon-play {
        margin-left: 2px;
    }

    /* Icon visibility is driven by a class on the button rather than the
       SVG `hidden` attribute — `hidden` only reliably reflects as a real
       DOM attribute on HTMLElement, not SVGElement, in several browsers,
       so toggling it via JS silently did nothing visible on the icons. */
    .hero__player-play .icon-pause {
        display: none;
    }

    .hero__player-play.is-playing .icon-play {
        display: none;
    }

    .hero__player-play.is-playing .icon-pause {
        display: block;
    }

.hero__player-info {
    flex: 1;
    min-width: 0;
}

.hero__player-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero__player-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(26,18,8,0.15);
    border-radius: 9999px;
    cursor: pointer;
    overflow: hidden;
}

.hero__player-progress {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--dark);
    border-radius: 9999px;
}

.hero__player-note {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200,151,58,0.18);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

    .hero__player-note:hover {
        background: rgba(200,151,58,0.3);
    }

    .hero__player-note svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: var(--dark);
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .hero__player-note.is-muted svg {
        opacity: 0.4;
    }

.hero__player-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.hero__player-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26,18,8,0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .hero__player-dot.is-active {
        width: 10px;
        height: 10px;
        background: transparent;
        border: 1.5px solid var(--dark);
    }

/* ── Marquee: endless scrolling platform strip ── */
.marquee {
    background: var(--cream);
    border-top: 1px solid rgba(26,18,8,0.08);
    overflow: hidden;
    padding: 1.1rem 0;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
    animation-play-state: paused;
}

.marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    white-space: nowrap;
    border-right: 1px solid rgba(26,18,8,0.12);
    text-decoration: none;
}

    .marquee__item svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: var(--dark-fainted);
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

        .marquee__item svg .marquee__item-fill {
            fill: var(--dark-fainted);
            stroke: none;
        }

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
    }
}

@media (min-width: 768px) {
    .hero__scroll {
        display:flex;
    }
        .hero__player {
            right: 4%;
            bottom: 2rem;
            transform: translateX(0px) !important;
        }
    }

@media (min-width: 1280px) {
    .hero__player {
        right: 5%;
        bottom: 2.25rem;
    }
}





@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

/* ── Load animations ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Desktop breakpoints ── */
@media (min-width: 768px) {
    .nav {
        height: 80px;
    }

    .nav__links {
        display: flex;
    }

    .nav__cta {
        display: flex;
    }

    .nav__burger {
        display: none;
    }

    .nav__drawer-close {
        top: 1.75rem;
        right: 3rem;
    }

    .hero__badge {
        left: 4%;
    }

    .hero__scroll {
        bottom: 2.5rem;
        transform: translate(-25%,-50%);
    }

    .hero__tagline {
        right: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .nav__drawer-close {
        right: 4rem;
    }

    .hero__badge {
        left: 5%;
    }

    .hero__tagline {
        right: 2.75rem;
    }
}

/* ════════════════════════════════════════════
       SCROLL-REVEAL SYSTEM
       .reveal        — fades up from below (default)
       .reveal-left   — slides in from the left
       .reveal-right  — slides in from the right
       .reveal-down   — drops in from above (good for small eyebrow labels)
       .reveal-img    — fade + gentle scale (photos, cards)
       .reveal-d1/2/3 — stagger delays, composable with any of the above
    ════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-34px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

    .reveal-left.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(34px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

    .reveal-right.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-down {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

    .reveal-down.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-img {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

    .reveal-img.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.reveal-d1 {
    transition-delay: 0.2s;
}

.reveal-d2 {
    transition-delay: 0.4s;
}

.reveal-d3 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-down, .reveal-img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ════════════════════════════════════════════
       RAHAMA ALBUM (Latest Release)
    ════════════════════════════════════════════ */
.music {
    background: var(--bodybg);
    padding-block: 3rem;
}

.music__header {
    margin-bottom: 2rem;
}

.music__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 0.75rem;
}

.music__title {
    font-family: "Satoshi";
    font-weight: 600;
    font-size: clamp(2.4rem, 8vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--dark);
}

    .music__title span {
        color: var(--gold);
    }

.music__card {
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(244, 163, 75, 0.15) 0%, rgba(250, 207, 158, 0.2) 50%, rgba(250, 207, 158, 0) 100%);
    margin-inline: -1.5rem
}

.music__card-inner {
    background: #FBF7EE;
    border-radius: 12px;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    box-shadow: 0px 12px 24px 12px #160A040A;
}

.album-art {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #1A1208;
}

    .album-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.album-art__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(245,237,216,0.92);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    z-index: 2;
    transform: rotate(-5deg)
}


.music__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.music__pill-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.music__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,185,106,0.28);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
}

.music__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.music__meta-text {
    font-size: 0.85rem;
    color: var(--dark-fainted);
}

.music__content h3 {
    font-family: "Satoshi";
    font-weight: 400;
    font-size: clamp(1.4rem, 4.5vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-wrap: balance;
}

.music__content p {
    font-size: clamp(0.75rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    font-weight: 300;
    color: var(--dark-fainted);
    max-width: 480px;
}

.music__stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark-fainted);
}

    .music__stats svg {
        width: 15px;
        height: 15px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

.music__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.platform-icon {
    transition: transform 0.15s, background 0.2s;
}

    .platform-icon img {
        width: 32px;
    }

    .platform-icon:hover {
        transform: translateY(-2px);
    }

@media (min-width: 768px) {
    .music__card {
        margin-inline: 0rem
    }
}

@media (min-width: 900px) {
    .music {
        padding-block: 3.5rem;
    }

    .music__card-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: center;
        padding: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .music {
        padding-block: 4rem;
    }
}

/* ════════════════════════════════════════════
       SONGS FOR THE ALTAR (About)
    ════════════════════════════════════════════ */
.about {
    background: var(--greybg);
    padding-block: 3rem;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.about__photo-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #d8d0bd;
    max-height: 600px;
    width: 100%;
}

    .about__photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about__content {
    display: flex;
    flex-direction: column;
}

.about__title {
    font-family: "Satoshi";
    font-weight: 600;
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

    .about__title span {
        color: var(--gold);
    }

.about__content p {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--dark-fainted);
    margin-bottom: 1.25rem;
}

.about__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background: var(--dark);
    color: var(--bodybg);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.2s, transform 0.15s;
}

    .about__btn:hover {
        background: #2e1f06;
        transform: translateY(-2px);
    }

    .about__btn svg {
        width: 14px;
        height: 14px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@media (min-width: 900px) {
    .about {
        padding-block: 3.5rem;
    }

    .about__grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about__content {
        max-width: 576px;
        margin-left: auto;
    }
}

@media (min-width: 1280px) {
    .about {
        padding-block: 4rem;
    }

    .about__grid {
        gap: 5rem;
    }
}

/* ════════════════════════════════════════════
       IN THE ROOM (Gallery)
    ════════════════════════════════════════════ */
.roomgallery {
    background: var(--greybg);
    padding-block: 3rem;
}

.roomgallery__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 0.75rem;
}

.roomgallery__title {
    font-family: "Satoshi";
    font-weight: 400;
    font-size: clamp(2rem, 7vw, 4.5rem);
    letter-spacing: -0.01em;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.roomgallery__desc {
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--dark-fainted);
    max-width: 360px;
    margin-bottom: 2rem;
}

.roomgallery__photo {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

    .roomgallery__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: grayscale(100%) contrast(1.05);
        transform: scale(1.001);
        transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
    }

    .roomgallery__photo:hover img {
        filter: grayscale(0%) contrast(1);
        transform: scale(1.04);
    }

.roomgallery__row1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.roomgallery__row1-left {
    aspect-ratio: 4 / 5.2;
}

.roomgallery__row1-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .roomgallery__row1-right .roomgallery__photo {
        aspect-ratio: 16 / 9.5;
        flex: 1;
    }

.roomgallery__row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .roomgallery__row2 .roomgallery__photo {
        aspect-ratio: 4 / 4.8;
    }

.roomgallery__row3 .roomgallery__photo {
    aspect-ratio: 16 / 9;
}

@media (min-width: 640px) {
    .roomgallery__row2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .roomgallery {
        padding-block: 3.5rem;
    }

    .roomgallery__row1 {
        grid-template-columns: 1.6fr 1fr;
    }

    .roomgallery__row1-left {
        aspect-ratio: auto;
    }

    .roomgallery__row3 .roomgallery__photo {
        aspect-ratio: 21 / 9;
    }
}

@media (min-width: 1280px) {
    .roomgallery {
        padding-block: 4rem;
    }
}


/* ════════════════════════════════════════════
       WATCH — LIVE WORSHIP MOMENTS
    ════════════════════════════════════════════ */
.watch {
    background: var(--dark);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

    /* soft warm glow, top-right — echoes hero's warm tone */
    .watch::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 55%;
        height: 70%;
        background: radial-gradient(ellipse, rgba(200,151,58,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

.watch__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.watch__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.6);
}

.watch__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.watch__title {
    font-weight: 400;
    font-size: clamp(2rem, 6.5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--cream);
}

.watch__sub {
    font-size: 0.95rem;
    color: rgba(245,237,216,0.55);
    margin-top: 0.35rem;
}

.watch__yt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(245,237,216,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

    .watch__yt-link:hover {
        color: var(--gold-mid);
    }

    .watch__yt-link svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

/* ── Carousel viewport ── */
.watch__viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    touch-action: pan-y;
}

.watch__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s var(--ease);
    will-change: transform;
}

.watch__slide {
    position: relative;
    flex: 0 0 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

    .watch__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .watch__slide:hover img {
        transform: scale(1.04);
    }

.watch__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.watch__badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: #E1261C;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
}

.watch__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #E1261C;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .watch__play:hover {
        transform: translate(-50%, -50%) scale(1.08);
        background: #c81f16;
    }

    .watch__play svg {
        width: 22px;
        height: 22px;
        fill: #fff;
        margin-left: 3px;
    }

.watch__meta {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.watch__meta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.watch__meta-text {
    min-width: 0;
}

.watch__meta-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.watch__meta-channel {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

/* ── Iframe (injected on click) ── */
.watch__slide iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Dots ── */
.watch__dots {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2rem;
}

.watch__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, border 0.25s ease;
}

    .watch__dot:hover {
        background: rgba(245,237,216,0.6);
    }

    .watch__dot.is-active {
        width: 16px;
        height: 16px;
        background: transparent;
        border: 1.5px solid var(--cream);
        border-radius: 9999px;
    }

/* ── Responsive ── */
@media (min-width: 768px) {
    .watch {
        padding: 6.5rem 0;
    }

    .watch__slide {
        flex-basis: calc(50% - 0.625rem);
        aspect-ratio: 16 / 11;
    }

    .watch__meta-title {
        font-size: 1.15rem;
    }
}

@media (min-width: 1280px) {
    .watch {
        padding: 8rem 0;
    }
}

/* ════════════════════════════════════════════
       UPCOMING MINISTRATIONS
    ════════════════════════════════════════════ */
.ministrations {
    background: var(--dark);
    padding: 4.5rem 0 5rem;
}

.ministrations__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.6);
    margin-bottom: 0.9rem;
}

.ministrations__title {
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: clamp(2rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.ministrations__list {
    border-top: 1px solid rgba(245,237,216,0.14);
}

.ministrations__row {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 0.5rem 0.85rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(245,237,216,0.14);
    cursor: pointer;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

    /* left accent bar that grows in on hover */
    .ministrations__row::before {
        content: '';
        position: absolute;
        left: -1.1rem;
        top: 0.6rem;
        bottom: 0.6rem;
        width: 3px;
        border-radius: 2px;
        background: var(--gold-light);
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.4s var(--ease);
    }

    .ministrations__row:hover {
        background: linear-gradient(90deg, rgba(200,151,58,0.08), transparent 75%);
        transform: translateX(6px);
    }

        .ministrations__row:hover::before {
            transform: scaleY(1);
        }

.ministrations__date {
    font-family: 'Satoshi';
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1rem, 4vw, 1.35rem);
    color: var(--bodybg);
    white-space: nowrap;
}

    .ministrations__date svg {
        width: 15px;
        height: 15px;
        stroke: var(--bodybg);
        opacity: .6;
        fill: none;
        stroke-width: 1.6;
        flex-shrink: 0;
        transition: stroke 0.35s ease;
    }

.ministrations__row:hover .ministrations__date svg {
    stroke: var(--gold-light);
}

.ministrations__city {
    font-size: clamp(1rem, 4vw, 1.35rem);
    color: var(--cream);
    transition: color 0.35s ease;
    white-space: nowrap;
    transition: color 0.35s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ministrations__row:hover .ministrations__city {
    color: var(--gold-light);
}

/* Venue: hidden on mobile so date + city + cta share one row */
.ministrations__venue {
    font-family: 'Satoshi';
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--bodybg);
    opacity: .7;
    justify-content: center;
}

    .ministrations__venue svg {
        width: 16px;
        height: 16px;
        stroke: var(--bodybg);
        opacity: .7;
        fill: none;
        stroke-width: 1.6;
        flex-shrink: 0;
        transition: stroke 0.35s ease;
    }

.ministrations__row:hover .ministrations__venue svg {
    stroke: var(--gold-light);
}

.ministrations__cta {
    justify-self: end;
}

.ministrations__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border: 1px solid rgba(245,237,216,0.3);
    border-radius: 9999px;
    padding: 0.55rem 1.1rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

    .ministrations__btn:hover {
        background: rgba(245,237,216,0.08);
        border-color: rgba(245,237,216,0.55);
    }

.ministrations__row:hover .ministrations__btn {
    background: rgba(200,151,58,0.14);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.ministrations__btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ── Responsive: reveal venue, adjust columns on desktop ── */
@media (min-width: 768px) {
    .ministrations {
        padding: 6rem 0 6.5rem;
    }

    .ministrations__title {
        margin-bottom: 3rem;
    }

    .ministrations__row {
        grid-template-columns: auto auto 1fr auto;
        gap: 1.75rem;
        padding: 1.85rem 0;
    }

    .ministrations__venue {
        display: flex;
        white-space: nowrap;
    }

    .ministrations__cta {
        justify-self: end;
    }
}

@media (min-width: 1280px) {
    .ministrations {
        padding: 7rem 0 7.5rem;
    }
}

/* ════════════════════════════════════════════
       BOOKING
    ════════════════════════════════════════════ */
.booking {
    position: relative;
    background: var(--greybg);
    padding-block: 4.5rem;
    overflow: hidden;
    text-align: center;
}

.booking-gradient {
    width: 820px;
    height: 420px;
    opacity: 1;
    background: linear-gradient( 0deg, #F4A34B4D, #F4A34B4D );
    backdrop-filter: blur(96px);
}

/* Soft radial gold glow behind the headline */
.booking::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, 140%);
    height: 480px;
    border-radius: 22369600px;
    background: radial-gradient(ellipse at center, #F4A34B4D 0%, #F4A34B4D 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.booking__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.booking__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 1rem;
}

.booking__title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

    .booking__title em {
        font-style: normal;
        color: var(--gold);
    }

.booking__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    color: var(--dark-fainted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    text-wrap: balance;
}

.booking__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background: var(--dark);
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.95rem 1.75rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .booking__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .booking__cta svg:first-child {
        width: 16px;
        height: 16px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .booking__cta svg:last-child {
        width: 13px;
        height: 13px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

/* Social icons row */
.booking__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.booking__social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FAF6EF;
    border: 1px solid rgba(26,18,8,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    text-decoration: none;
}

    .booking__social:hover {
        background: #fff;
        border-color: rgba(26,18,8,0.16);
        transform: translateY(-2px);
    }

    .booking__social svg {
        width: 18px;
        height: 18px;
        stroke: var(--dark);
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

        .booking__social svg.filled {
            fill: var(--dark);
            stroke: none;
        }

@media (min-width: 768px) {
    .booking {
        padding-block: 5.5rem;
    }
}

@media (min-width: 1280px) {
    .booking {
        padding-block: 6rem;
    }
}

/* ════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════ */
.site-footer {
    background: var(--bodybg);
    padding: 2rem 0;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.site-footer__logo {
    font-family: 'Sassy Frass';
    font-size: 1.6rem;
    line-height: 1;
    color: var(--dark);
}

.site-footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--dark-fainted);
}

.site-footer__copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--dark-fainted);
}

@media (min-width: 768px) {
    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer__copy a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

    .site-footer__copy a:hover {
        text-decoration: underline;
    }