/* ========================================
   SUPRA Website — Apple-Inspired Design
   ======================================== */

/* ---------- Fonts ---------- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1d1d1f;
    --gray-dark: #424245;
    --gray: #86868b;
    --gray-light: #d2d2d7;
    --gray-bg: #f5f5f7;
    --white: #ffffff;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

::selection {
    background: var(--black);
    color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo switching: white vs dark */
.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 22px;
}

.nav-logo-img {
    height: 22px;
    width: auto;
    transition: opacity 0.4s ease;
}

.nav-logo-white {
    opacity: 1;
}

.nav-logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#navbar.scrolled .nav-logo-white,
#navbar.menu-open .nav-logo-white {
    opacity: 0;
}

#navbar.scrolled .nav-logo-dark,
#navbar.menu-open .nav-logo-dark {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

#navbar.scrolled .nav-link {
    color: var(--gray-dark);
}

#navbar.scrolled .nav-link:hover {
    color: var(--black);
}

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 980px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

#navbar.scrolled .nav-cta {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

#navbar.scrolled .nav-cta:hover {
    background: var(--gray-dark);
    border-color: var(--gray-dark);
}

/* Nav Right Group */
.nav-right {
    display: flex;
    align-items: center;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
}

.lang-switch-item {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

a.lang-switch-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lang-switch-item.active {
    color: white;
    font-weight: 600;
}

.lang-switch-sep {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

#navbar.scrolled .lang-switch-item {
    color: var(--gray-light);
}

#navbar.scrolled a.lang-switch-item:hover {
    color: var(--black);
}

#navbar.scrolled .lang-switch-item.active {
    color: var(--black);
}

#navbar.scrolled .lang-switch-sep {
    color: var(--gray-light);
}

/* Mobile Language Switch */
.mobile-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.mobile-lang-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.mobile-lang-item:hover {
    color: var(--black);
}

.mobile-lang-item.active {
    color: var(--black);
    font-weight: 600;
}

.mobile-lang-sep {
    font-size: 14px;
    color: var(--gray-light);
    user-select: none;
}

/* Hamburger */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1003;
}

#menu-toggle.active {
    z-index: 1003;
}

#menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

#menu-toggle span + span {
    margin-top: 5px;
}

#navbar.scrolled #menu-toggle span {
    background: var(--black);
}

#menu-toggle.active span {
    background: var(--black) !important;
}

#menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--gray);
}

.mobile-link-cta {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    padding: 14px 32px;
    border-radius: 980px;
}

/* ---------- Hero ---------- */
#hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 0 2px #000;
}

.hero-video-wrap {
    position: absolute;
    inset: -1px;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo {
    height: clamp(40px, 6vw, 80px);
    width: auto;
    margin: 0 auto 24px;
}

.hero-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 24px;
    transform: scaleX(0);
    animation: lineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes lineExpand {
    to { transform: scaleX(1); }
}

.hero-tagline {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 7px; }
    50% { opacity: 0.3; top: 18px; }
    100% { opacity: 1; top: 7px; }
}

/* Finger (mobile only) */
.scroll-finger {
    display: none;
    color: rgba(255, 255, 255, 0.45);
    animation: swipeUp 2s ease-in-out infinite;
}

@keyframes swipeUp {
    0% { opacity: 0.8; transform: translateY(6px); }
    50% { opacity: 0.3; transform: translateY(-6px); }
    100% { opacity: 0.8; transform: translateY(6px); }
}

@media (max-width: 768px) {
    .scroll-mouse {
        display: none;
    }
    .scroll-finger {
        display: block;
    }
}

/* Hero fade-in */
.hero-content {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    animation: heroFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- Statement Section ---------- */
.section-statement {
    padding: clamp(50px, 8vh, 100px) 0;
    display: flex;
    align-items: center;
    min-height: auto;
}

.statement-text {
    font-size: 0;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--black);
    max-width: 900px;
}

/* Scroll-driven word reveal */
.st-word {
    display: inline-block;
    font-size: clamp(22px, 3.2vw, 42px);
    margin-right: 0.22em;
    opacity: 0.1;
    filter: blur(4px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.st-word.active {
    opacity: 1;
    filter: blur(0);
}

.st-word.st-muted.active {
    opacity: 1;
    color: var(--gray);
}

/* ---------- About Section ---------- */
.section-about {
    padding: clamp(60px, 10vh, 120px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.about-heading .section-label {
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--black);
}

.about-title-light {
    color: var(--gray);
}

.about-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

/* ---------- Full-Width Image with Scroll Scale ---------- */
.section-image-full {
    padding: 0 clamp(24px, 5vw, 80px);
}

.image-full-wrap {
    border-radius: 20px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    will-change: transform, border-radius;
    transform: scale(0.92);
    border-radius: 28px;
    transition: transform 0.05s linear, border-radius 0.05s linear;
}

.image-full {
    width: 100%;
    height: clamp(300px, 50vw, 600px);
    object-fit: cover;
    display: block;
}

/* ---------- Services ---------- */
.section-services {
    padding: clamp(80px, 15vh, 160px) 0 clamp(60px, 10vh, 120px);
}

.section-header {
    margin-bottom: clamp(48px, 8vh, 80px);
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
}

/* Services header — left aligned */
.services-header {
    margin-bottom: clamp(40px, 6vh, 72px);
}

.services-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--black);
}

.services-title-light {
    color: var(--gray);
}

/* Service rows — alternating layout */
.service-row {
    padding: clamp(40px, 6vh, 80px) 0;
}

.service-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.service-split--reverse {
    direction: rtl;
}

.service-split--reverse > * {
    direction: ltr;
}

.service-split-img {
    border-radius: 20px;
    overflow: hidden;
}

.service-split-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.service-num {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}

.service-split-text h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 16px;
}

.service-split-text p a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.service-split-text p a:hover {
    color: var(--accent-dark);
}

.service-split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-dark);
    max-width: 440px;
}

/* ---------- Quote Section ---------- */
.section-quote {
    position: relative;
    height: clamp(400px, 60vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 0 2px #000;
}

.quote-bg {
    position: absolute;
    inset: -80px;
    will-change: transform;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(24px, 5vw, 80px);
}

.quote-content blockquote {
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

/* ---------- Global Section ---------- */
.section-global {
    padding: clamp(80px, 15vh, 160px) 0;
}

.global-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vh, 64px);
}

.global-header .section-label {
    margin-bottom: 16px;
}

.global-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.global-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.global-card-img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.global-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-card-text {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.global-office-city {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.global-office-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.global-office-desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-dark);
}

/* ---------- Features Strip ---------- */
.section-features {
    padding: clamp(60px, 10vh, 120px) 0;
    background: var(--gray-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature {
    padding: 0 8px;
    position: relative;
}

.feature-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 8px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-number {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
    margin-top: 16px;
    font-variant-numeric: tabular-nums;
}

.feature h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-dark);
}

/* ---------- Contact Dark ---------- */
.section-contact-dark {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--black);
}

.contact-dark-header {
    margin-bottom: clamp(40px, 6vh, 56px);
}

.contact-dark-header .section-label {
    color: var(--gray);
}

.contact-dark-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

.contact-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.contact-dark-card {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 32px 0 0;
}

.contact-dark-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-dark-company {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.contact-dark-details {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-dark-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-dark-links a {
    font-size: 15px;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.contact-dark-links a:hover {
    opacity: 0.7;
}


/* ---------- Footer ---------- */
#footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 18px;
    width: auto;
    opacity: 0.4;
}

.footer-brand p {
    font-size: 12px;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 12px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--black);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

/* --- Standard reveal (fade up) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Slide up (for cards with stagger via --reveal-delay) --- */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Slide left (for features) --- */
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Zoom reveal (for images) --- */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

}

@media (max-width: 768px) {
    .nav-links,
    .nav-right {
        display: none;
    }

    #menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .section-statement {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .section-image-full {
        display: none;
    }

    .global-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-dark-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-split,
    .service-split--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .global-locations {
        gap: 12px;
    }

    .global-cards {
        max-width: 100%;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-slide-up, .reveal-slide-left, .reveal-zoom {
        opacity: 1;
        transform: none;
    }

    .statement-text .word-inner {
        transform: none;
    }
}

/* ---------- Print ---------- */
@media print {
    #navbar, .scroll-hint, #hero video, .hero-overlay,
    .quote-bg, .quote-overlay {
        display: none;
    }
}
