/* ═══════════════════════════════════════════════════
   Ruah Paints Portfolio — v5.0 ARTISTIC EDITION
   Built by Syberra
   ═══════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────── */
:root {
    --ruah-cream: #faf8f5;
    --ruah-warm: #f5f0eb;
    --ruah-charcoal: #2d2826;
    --ruah-text: #3d3835;
    --ruah-muted: #8a8280;
    --ruah-gold: #c4a265;
    --ruah-gold-light: #d4b87a;
    --ruah-shadow: rgba(45, 40, 38, 0.08);
}

/* ── Smooth Scroll + Base ───────────────────────── */
html {
    scroll-behavior: smooth;
}
body {
    background: var(--ruah-cream) !important;
    color: var(--ruah-text);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
* { box-sizing: border-box; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    color: var(--ruah-charcoal);
}
.ruah-handwritten {
    font-family: "Caveat", cursive;
}

/* ── Header ─────────────────────────────────────── */
.ast-primary-header,
.site-header {
    background: rgba(250, 248, 245, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none !important;
    transition: all 0.4s ease;
    z-index: 1000;
}
.header-shadow {
    box-shadow: 0 1px 30px rgba(45, 40, 38, 0.06);
}
.site-title a, .site-title {
    font-family: "Playfair Display", serif !important;
    color: var(--ruah-charcoal) !important;
}
#ast-desktop-header .main-header-menu a {
    font-family: "DM Sans", sans-serif !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem !important;
    color: var(--ruah-charcoal) !important;
    transition: color 0.3s;
}
#ast-desktop-header .main-header-menu a:hover {
    color: var(--ruah-gold) !important;
}

/* ══════════════════════════════════════════════════
   VIDEO HERO — Cinematic fullscreen
   ══════════════════════════════════════════════════ */
.ruah-video-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ruah-charcoal);
}
.ruah-hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.7) saturate(1.1);
}
.ruah-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(45,40,38,0.2) 0%,
        rgba(45,40,38,0.4) 50%,
        rgba(45,40,38,0.7) 100%
    );
    z-index: 1;
}
.ruah-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 120px;
    max-width: 900px;
}
.ruah-hero-title {
    font-size: 6rem;
    font-weight: 200;
    line-height: 1.05;
    margin-bottom: 0.2em;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
}
.ruah-hero-title em {
    font-weight: 300;
    font-style: italic;
    display: block;
    font-size: 0.75em;
    color: var(--ruah-gold);
}
.ruah-hero-subtitle {
    font-family: "Caveat", cursive;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 0.8em;
}
.ruah-hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 3em;
}
.ruah-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: ruahBounce 2s infinite;
}
.ruah-scroll-hint span {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes ruahBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════
   VIDEO INTERLUDE — Mid-page cinematic section
   ══════════════════════════════════════════════════ */
.ruah-video-interlude {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ruah-charcoal);
}
.ruah-video-interlude video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.6) saturate(1.2);
}
.ruah-video-interlude .ruah-interlude-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45,40,38,0.5);
    z-index: 1;
}
.ruah-video-interlude .ruah-interlude-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 700px;
}
.ruah-interlude-content blockquote {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.ruah-interlude-content cite {
    display: block;
    margin-top: 1.5em;
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ruah-gold);
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.ruah-btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.ruah-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--ruah-gold);
    transition: left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}
.ruah-btn:hover::before {
    left: 0;
}
.ruah-btn:hover {
    border-color: var(--ruah-gold);
    color: #fff;
}
.ruah-btn-dark {
    border-color: var(--ruah-charcoal);
    color: var(--ruah-charcoal);
}
.ruah-btn-dark:hover {
    color: #fff;
}
.ruah-btn-gold {
    background: var(--ruah-gold) !important;
    color: #fff !important;
    border-color: var(--ruah-gold) !important;
}
.ruah-btn-gold::before { display: none; }
.ruah-btn-gold:hover {
    background: var(--ruah-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 162, 101, 0.3);
}

/* ══════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════ */
.ruah-section {
    padding: 120px 24px;
    text-align: center;
}
.ruah-section-label {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ruah-gold);
    margin-bottom: 1.5em;
}
.ruah-section-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 0.5em;
    color: var(--ruah-charcoal);
    letter-spacing: -0.01em;
}
.ruah-divider {
    width: 40px;
    border: none;
    border-top: 1.5px solid var(--ruah-gold);
    margin: 2em auto;
}
.ruah-section-text {
    max-width: 550px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--ruah-muted);
}

.ruah-bg-dark {
    background: var(--ruah-charcoal);
}
.ruah-bg-dark .ruah-section-title { color: #fff; }
.ruah-bg-dark .ruah-section-label { color: var(--ruah-gold); }
.ruah-bg-dark .ruah-divider { border-color: rgba(196,162,101,0.4); }
.ruah-bg-dark .ruah-section-text { color: rgba(255,255,255,0.6); }

.ruah-bg-warm {
    background: var(--ruah-warm);
}

/* ══════════════════════════════════════════════════
   MASONRY GALLERY — Artistic staggered layout
   ══════════════════════════════════════════════════ */
.ruah-gallery {
    display: grid;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}
.ruah-cols-3 {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 8px;
}

/* Masonry sizing — staggered artwork cards */
.ruah-artwork:nth-child(1)  { grid-column: span 5; grid-row: span 45; }
.ruah-artwork:nth-child(2)  { grid-column: span 4; grid-row: span 35; }
.ruah-artwork:nth-child(3)  { grid-column: span 3; grid-row: span 40; }
.ruah-artwork:nth-child(4)  { grid-column: span 4; grid-row: span 42; }
.ruah-artwork:nth-child(5)  { grid-column: span 5; grid-row: span 38; }
.ruah-artwork:nth-child(6)  { grid-column: span 3; grid-row: span 44; }
.ruah-artwork:nth-child(7)  { grid-column: span 4; grid-row: span 40; }
.ruah-artwork:nth-child(8)  { grid-column: span 4; grid-row: span 36; }
.ruah-artwork:nth-child(9)  { grid-column: span 4; grid-row: span 42; }
.ruah-artwork:nth-child(10) { grid-column: span 5; grid-row: span 38; }
.ruah-artwork:nth-child(11) { grid-column: span 3; grid-row: span 44; }
.ruah-artwork:nth-child(12) { grid-column: span 4; grid-row: span 40; }
.ruah-artwork:nth-child(13) { grid-column: span 5; grid-row: span 42; }
.ruah-artwork:nth-child(14) { grid-column: span 4; grid-row: span 36; }
.ruah-artwork:nth-child(15) { grid-column: span 3; grid-row: span 38; }

/* ── Artwork Cards ──────────────────────────────── */
.ruah-artwork {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
}
.ruah-artwork-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ruah-artwork-img img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
    filter: saturate(0.9);
}
.ruah-artwork:hover .ruah-artwork-img img {
    transform: scale(1.08);
    filter: saturate(1.1) brightness(1.05);
}

/* Artwork overlay on hover */
.ruah-artwork-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(45,40,38,0.85) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}
.ruah-artwork:hover .ruah-artwork-info {
    opacity: 1;
    transform: translateY(0);
}
.ruah-artwork-info h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 4px;
    font-family: "Playfair Display", serif;
}
.ruah-artwork-meta {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Artwork reveal animation */
.ruah-artwork {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.ruah-artwork.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Lightbox ───────────────────────────────────── */
.ruah-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px;
    cursor: zoom-out;
}
.ruah-lightbox.active {
    display: flex;
    animation: ruahFadeIn 0.3s ease;
}
@keyframes ruahFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.ruah-lightbox-close {
    position: absolute;
    top: 24px; right: 30px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.3s;
}
.ruah-lightbox-close:hover {
    color: #fff;
}
.ruah-lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    animation: ruahZoomIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes ruahZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.ruah-lightbox-caption {
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    font-size: 0.8rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════ */
.ruah-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ruah-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.ruah-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ruah-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.ruah-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.ruah-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.ruah-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.ruah-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Parallax text */
.ruah-parallax-text {
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    font-weight: 200;
    color: rgba(45,40,38,0.04);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ══════════════════════════════════════════════════
   FEATURED ARTWORK — Large showcase
   ══════════════════════════════════════════════════ */
.ruah-featured-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ruah-featured-row.reverse {
    flex-direction: row-reverse;
}
.ruah-featured-img {
    flex: 1;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(45,40,38,0.15);
}
.ruah-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}
.ruah-featured-img:hover img {
    transform: scale(1.03);
}
.ruah-featured-text {
    flex: 0.8;
    text-align: left;
}
.ruah-featured-text h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.3em;
}
.ruah-featured-text .ruah-artwork-meta {
    font-size: 0.8rem;
    color: var(--ruah-muted);
    margin-bottom: 1.5em;
}
.ruah-featured-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ruah-muted);
}

/* ══════════════════════════════════════════════════
   COMMISSION / CTA SECTIONS
   ══════════════════════════════════════════════════ */
.ruah-cta-artistic {
    position: relative;
    padding: 140px 24px;
    text-align: center;
    overflow: hidden;
}
.ruah-cta-artistic::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(196,162,101,0.08) 0%, transparent 70%);
    animation: ruahPulse 8s ease-in-out infinite;
}
@keyframes ruahPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — Artistic layout
   ══════════════════════════════════════════════════ */
.ruah-about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 2;
}
.ruah-about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5em;
    color: var(--ruah-text);
}
.ruah-about-content p:first-child::first-letter {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 400;
    float: left;
    margin-right: 12px;
    margin-top: 6px;
    line-height: 0.8;
    color: var(--ruah-gold);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ruah-hero-title { font-size: 4.5rem; }
    .ruah-featured-row { flex-direction: column !important; gap: 40px; }
    .ruah-featured-text { text-align: center; }
    .ruah-parallax-text { font-size: 5rem; }
}

@media (max-width: 768px) {
    .ruah-video-hero { min-height: 100vh; }
    .ruah-hero-video { display: block; }
    .ruah-hero-title { font-size: 3.2rem !important; }
    .ruah-hero-subtitle { font-size: 1.4rem; }
    .ruah-section { padding: 80px 20px; }
    .ruah-section-title { font-size: 2.2rem; }
    .ruah-video-interlude { min-height: 50vh; }
    .ruah-interlude-content blockquote { font-size: 1.6rem; }
    .ruah-parallax-text { font-size: 3.5rem; }

    /* Gallery: 2 columns on tablet */
    .ruah-cols-3 {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 6px;
    }
    .ruah-artwork:nth-child(odd)  { grid-column: span 3; grid-row: span 35; }
    .ruah-artwork:nth-child(even) { grid-column: span 3; grid-row: span 30; }
}

@media (max-width: 600px) {
    .ruah-hero-title { font-size: 2.5rem !important; }
    .ruah-hero-tagline { letter-spacing: 0.2em; }
    .ruah-section { padding: 60px 16px; }
    .ruah-section-title { font-size: 1.8rem; }
    .ruah-parallax-text { font-size: 2.5rem; }

    /* Gallery: dramatic single column with varying heights */
    .ruah-cols-3 {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 12px !important;
    }
    .ruah-artwork,
    .ruah-artwork:nth-child(n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        position: relative !important;
        aspect-ratio: 4/5;
    }
    .ruah-artwork-img {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
    }
    .ruah-artwork-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .ruah-artwork-info {
        opacity: 1;
        transform: none;
    }
    .ruah-btn { padding: 14px 32px; font-size: 0.65rem; }
    .ruah-lightbox { padding: 20px; }
    .ruah-lightbox-img { max-width: 95vw; max-height: 70vh; }
    .ruah-lightbox-nav { width: 44px; height: 44px; font-size: 1.2rem; }
    .ruah-lightbox-prev { left: 8px; }
    .ruah-lightbox-next { right: 8px; }
    .ruah-video-interlude { min-height: 40vh; }
    .ruah-interlude-content blockquote { font-size: 1.2rem; }
    .ruah-scroll-hint { display: none; }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY — Focus, reduced motion, dark mode
   ══════════════════════════════════════════════════ */

/* Visible focus indicators — 3:1 contrast ratio */
.ruah-artwork:focus-visible,
.ruah-btn:focus-visible,
.ruah-lightbox-close:focus-visible,
.ruah-lightbox-nav:focus-visible,
#ast-desktop-header .main-header-menu a:focus-visible {
    outline: 2px solid var(--ruah-gold);
    outline-offset: 3px;
}
.ruah-artwork:focus-visible {
    outline-offset: 0;
    box-shadow: 0 0 0 3px var(--ruah-gold);
}

/* Make gallery items focusable + show hover state on focus */
.ruah-artwork:focus-visible .ruah-artwork-info {
    opacity: 1;
    transform: translateY(0);
}
.ruah-artwork:focus-visible .ruah-artwork-img img {
    transform: scale(1.08);
    filter: saturate(1.1) brightness(1.05);
}

/* Lightbox navigation arrows */
.ruah-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-family: "DM Sans", sans-serif;
}
.ruah-lightbox-nav:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}
.ruah-lightbox-prev { left: 24px; }
.ruah-lightbox-next { right: 24px; }

/* Minimum touch targets — 44x44px */
.ruah-lightbox-close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GPU acceleration hints for animated elements */
.ruah-artwork-img img,
.ruah-hero-video,
.ruah-parallax-text {
    will-change: transform;
}
.ruah-animate,
.ruah-artwork {
    will-change: transform, opacity;
}

/* Prefers reduced motion — disable animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .ruah-animate,
    .ruah-artwork,
    .ruah-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .ruah-artwork-img img {
        transition: none !important;
    }
    .ruah-hero-video {
        transform: translate(-50%, -50%) scale(1) !important;
        filter: brightness(0.7) saturate(1.1);
    }
    .ruah-parallax-text {
        transform: none !important;
    }
    .ruah-scroll-hint { display: none; }
    .ruah-cta-artistic::before { animation: none; }
}

/* Prefers color scheme — dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --ruah-cream: #1a1816;
        --ruah-warm: #211e1b;
        --ruah-charcoal: #f0ece8;
        --ruah-text: #d4cfc9;
        --ruah-muted: #9a9694;
        --ruah-shadow: rgba(0, 0, 0, 0.2);
    }
    body {
        background: var(--ruah-cream) !important;
        color: var(--ruah-text);
    }
    .ast-primary-header,
    .site-header {
        background: rgba(26, 24, 22, 0.9) !important;
    }
    .ruah-artwork {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
    .ruah-bg-warm {
        background: var(--ruah-warm);
    }
    .ruah-parallax-text {
        color: rgba(240, 236, 232, 0.04);
    }
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Astra Overrides ────────────────────────────── */
:root {
    --ast-global-color-0: #2d2826 !important;
    --ast-global-color-1: #2d2826 !important;
    --ast-global-color-2: #5a5350 !important;
    --ast-global-color-3: #5a5350 !important;
    --ast-global-color-4: #faf8f5 !important;
    --ast-global-color-5: #f5f0eb !important;
    --ast-global-color-6: #faf8f5 !important;
    --ast-global-color-7: #f5f0eb !important;
    --ast-global-color-8: #c4a265 !important;
}
.ast-above-header, .ast-below-header { display: none !important; }
.ast-header-break-point .ast-mobile-menu-buttons .menu-toggle {
    color: var(--ruah-charcoal) !important;
}
