/* =========================================================
   ASAP — Association of Student Activism for Palestine
   Design system & global styles
   ========================================================= */

:root {
    /* Palestinian flag-inspired palette, editorialised */
    --c-black: #0b0b0b;
    --c-ink: #141414;
    --c-graphite: #2a2a2a;
    --c-cream: #f6f1e7;
    --c-paper: #fbf8f1;
    --c-white: #ffffff;
    --c-red: #ce1126;
    --c-red-deep: #8a0a18;
    --c-green: #007a3d;
    --c-green-deep: #00532a;
    --c-olive: #c8a13b;
    --c-watermelon-pink: #e83e5c;
    --c-watermelon-rind: #2b6f3a;

    /* Functional */
    --c-text: var(--c-ink);
    --c-text-soft: #4a4a4a;
    --c-line: rgba(11, 11, 11, 0.12);
    --c-line-strong: rgba(11, 11, 11, 0.6);

    /* Type */
    --f-display: "Fraunces", "Playfair Display", Georgia, serif;
    --f-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
    --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
    --f-arabic: "Amiri", "Noto Naskh Arabic", serif;

    /* Layout */
    --max: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 4px;

    /* Motion */
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ----------------------------- Reset ----------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--f-sans);
    color: var(--c-text);
    background: var(--c-paper);
    line-height: 1.55;
    font-size: 17px;
    font-feature-settings: "ss01", "kern";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.15rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 1em; }

::selection { background: var(--c-red); color: var(--c-cream); }

/* --------------------------- Utilities --------------------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow {
    font-family: var(--f-mono);
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    color: var(--c-red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}
.section { padding-block: clamp(70px, 9vw, 130px); }
.section--dark { background: var(--c-black); color: var(--c-cream); }
.section--dark .eyebrow { color: var(--c-olive); }
.section--cream { background: var(--c-cream); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    background: var(--c-black);
    color: var(--c-cream);
    border: 1px solid var(--c-black);
    transition: all 0.25s var(--ease);
    border-radius: var(--radius);
    line-height: 1;
}
.btn:hover { background: var(--c-red); border-color: var(--c-red); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: var(--c-cream); color: var(--c-black); border-color: var(--c-cream); }
.btn--red { background: rgba(206, 17, 38, 1); border-color: rgba(206, 17, 38, 1); }
.btn--red:hover { background: var(--c-red-deep); border-color: var(--c-red-deep); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------------------- Marquee ticker --------------------------- */
.ticker {
    background: var(--c-red);
    color: var(--c-cream);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}
.ticker__track {
    display: flex;
    gap: 60px;
    padding-block: 12px;
    white-space: nowrap;
    animation: ticker 50s linear infinite;
    width: max-content;
}
.ticker span { display: inline-flex; align-items: center; gap: 14px; }
.ticker span::after {
    content: "✦";
    color: var(--c-cream);
    opacity: 0.7;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------------------------- Header ----------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid var(--c-line);
    transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-block: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}
.brand img {
    height: 52px;
    width: auto;
    display: block;
}
@media (max-width: 880px) {
    .brand img { height: 42px; }
}
@media (max-width: 480px) {
    .brand img { height: 36px; }
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    padding-block: 6px;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--c-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--c-red); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--c-line-strong);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (max-width: 880px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--c-paper); border-bottom: 1px solid var(--c-line); padding: 12px var(--gutter) 24px; }
    .nav.is-open { display: flex; }
    .nav a { width: 100%; padding-block: 14px; border-bottom: 1px solid var(--c-line); font-size: 1rem; }
    .nav-toggle { display: inline-block; }
}

/* ----------------------------- Hero ------------------------------ */
.hero {
    position: relative;
    background: var(--c-black);
    color: var(--c-cream);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-block: clamp(70px, 9vw, 110px) clamp(80px, 10vw, 120px);
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 880px) {
    .hero__inner { grid-template-columns: 1fr; gap: 32px; padding-block: 70px 70px; }
    .hero__inner .hero__panel { display: none; }
}
.hero__title {
    font-size: clamp(3rem, 8vw, 7.4rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 18px 0 28px;
}
.hero__title em {
    font-style: italic;
    color: var(--c-olive);
    font-weight: 400;
}
.hero__title .strike {
    position: relative;
    display: inline-block;
    color: var(--c-red);
}
.hero__lede {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 52ch;
    color: rgba(246, 241, 231, 0.82);
    margin-bottom: 36px;
    line-height: 1.6;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 30px 0;
}
.hero__panel .tatreez-panel {
    filter: brightness(1.05);
    opacity: 0.9;
}

/* ----------------------- Tatreez decorations --------------------- */
/* Authentic Palestinian cross-stitch (tatreez) inspired patterns,
   used as section dividers, hero accents, and footer ornaments. */

.tatreez {
    position: absolute;
    inset: auto 0 0 0;
    height: 22px;
    background-image: url("../assets/tatreez-band.svg");
    background-repeat: repeat-x;
    background-size: auto 22px;
    background-position: center;
    opacity: 0.95;
}
.tatreez--top { inset: 0 0 auto 0; }
.tatreez--inline {
    position: relative;
    inset: auto;
    width: 100%;
    height: 22px;
    display: block;
}

/* Smaller chain-stitch divider, used between sections */
.tatreez-chain {
    height: 16px;
    background-image: url("../assets/tatreez-chain.svg");
    background-repeat: repeat-x;
    background-size: auto 16px;
    background-position: center;
    width: 100%;
    display: block;
}

/* Vertical tatreez panel as decorative aside */
.tatreez-panel {
    background-image: url("../assets/tatreez-panel.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
    min-height: 480px;
}


/* ---------------------- Manifesto strip -------------------------- */
.manifesto {
    background: var(--c-cream);
    padding-block: clamp(70px, 9vw, 120px);
    position: relative;
}
.manifesto__lead {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    max-width: 28ch;
    margin: 0 auto;
    text-align: center;
}
.manifesto__lead span { color: var(--c-red); font-style: italic; }
.manifesto__lead em { font-style: italic; color: var(--c-green-deep); }

/* --------------------------- Pillars ----------------------------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
    margin-top: 80px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
    padding: 40px 32px 48px;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    transition: background 0.3s var(--ease);
    position: relative;
}
.pillars > .pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--c-paper); }
.pillar__num {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--c-red);
    text-transform: uppercase;
    margin-bottom: 36px;
    display: block;
}
.pillar h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); margin-bottom: 14px; }
.pillar p { color: var(--c-text-soft); margin: 0; }

/* --------------------------- Stats ------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(246, 241, 231, 0.18);
    border-bottom: 1px solid rgba(246, 241, 231, 0.18);
}
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
    padding: 50px 28px;
    border-right: 1px solid rgba(246, 241, 231, 0.14);
}
.stats .stat:last-child { border-right: 0; }
.stat__num {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--c-cream);
    display: block;
    margin-bottom: 14px;
}
.stat__num small { color: var(--c-red); font-style: italic; }
.stat__label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(246, 241, 231, 0.65);
    line-height: 1.5;
}


/* --------------------------- Societies grid ---------------------- */
.societies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
    border-left: 1px solid var(--c-line);
    margin-top: 60px;
}
@media (max-width: 1024px) { .societies { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .societies { grid-template-columns: repeat(2, 1fr); } }
.society {
    padding: 26px 22px;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    background: var(--c-paper);
}
.society:hover { background: var(--c-black); color: var(--c-cream); }
.society:hover .society__city { color: var(--c-olive); }
.society__name { font-family: var(--f-display); font-size: 1.05rem; line-height: 1.2; letter-spacing: -0.01em; }
.society__city { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-red); }

/* --------------------------- CTA banner -------------------------- */
.cta {
    background: var(--c-red);
    color: var(--c-cream);
    text-align: center;
    padding-block: clamp(70px, 9vw, 110px);
    position: relative;
    overflow: hidden;
}
.cta h2 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); margin-bottom: 24px; }
.cta p { max-width: 56ch; margin: 0 auto 36px; opacity: 0.9; font-size: 1.1rem; }
.cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

/* ---------------------------- Footer ----------------------------- */
.footer {
    background: var(--c-black);
    color: var(--c-cream);
    padding-block: 80px 30px;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background-image: url("../assets/tatreez-chain.svg");
    background-repeat: repeat-x;
    background-size: auto 14px;
    background-position: center;
    opacity: 0.85;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(2, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(246, 241, 231, 0.14);
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--c-olive);
    margin-bottom: 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a:hover { color: var(--c-red); }
.footer__statement {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: rgba(246, 241, 231, 0.85);
    max-width: 36ch;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(246, 241, 231, 0.55);
}

/* ============================ ABOUT ============================== */
.page-hero {
    background: var(--c-black);
    color: var(--c-cream);
    padding-block: clamp(90px, 12vw, 160px) clamp(60px, 8vw, 110px);
    position: relative;
    overflow: hidden;
}
.page-hero .wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 880px) {
    .page-hero .wrap { grid-template-columns: 1fr; gap: 30px; }
    .page-hero__kuffiyah { display: none; }
}
.page-hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    max-width: 14ch;
    letter-spacing: -0.035em;
}
.page-hero p {
    max-width: 56ch;
    margin-top: 32px;
    color: rgba(246, 241, 231, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
}
.page-hero__kuffiyah {
    background-image: url("../assets/kuffiyah.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    min-height: 420px;
    height: 100%;
    opacity: 0.95;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: stretch;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split h2 { margin-top: 0; }
.split__sticky {
    position: sticky;
    top: 110px;
    align-self: start;
}
@media (max-width: 880px) {
    .split__sticky { position: static; }
}
.prose p { font-size: 1.1rem; line-height: 1.8; color: var(--c-text); margin-bottom: 1.4em; }
.prose p:first-letter { font-family: var(--f-display); font-size: 3.2em; float: left; line-height: 0.85; padding: 6px 12px 0 0; color: var(--c-red); font-weight: 600; }
.prose strong { color: var(--c-red); font-weight: 600; }

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--c-line);
    border: 1px solid var(--c-line);
}
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }
.value {
    background: var(--c-paper);
    padding: 36px 32px 40px;
    transition: background 0.3s var(--ease);
}
.value:hover { background: var(--c-cream); }
.value h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.value h3 span { font-family: var(--f-mono); font-size: 0.72rem; color: var(--c-red); letter-spacing: 0.22em; }
.value p { color: var(--c-text-soft); margin: 0; }

/* Timeline */
.timeline {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--c-line);
}
.timeline__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--c-line);
    transition: background 0.3s var(--ease);
}
@media (max-width: 720px) { .timeline__row { grid-template-columns: 1fr; gap: 8px; } }
.timeline__row:hover { background: var(--c-cream); padding-inline: 24px; }
.timeline__year {
    font-family: var(--f-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--c-red);
    line-height: 1;
}
.timeline__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline__body p { color: var(--c-text-soft); margin: 0; max-width: 60ch; }

/* ============================ CONTACT ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--c-line);
}
.channel {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--c-line);
    align-items: center;
    transition: padding 0.3s var(--ease);
}
.channel:hover { padding-inline: 16px; background: var(--c-cream); }
.channel__label { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-red); }
.channel__value { font-family: var(--f-display); font-size: 1.3rem; letter-spacing: -0.01em; }
.channel__value small { display: block; font-size: 0.85rem; color: var(--c-text-soft); font-family: var(--f-sans); margin-top: 4px; letter-spacing: 0; }
.channel__arrow { font-family: var(--f-mono); font-size: 1rem; color: var(--c-text-soft); }

/* Form */
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-text-soft);
}
.field input,
.field select,
.field textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--c-line-strong);
    padding: 10px 0 12px;
    font: inherit;
    font-size: 1.05rem;
    font-family: var(--f-sans);
    color: var(--c-text);
    border-radius: 0;
    outline: none;
    transition: border-color 0.25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--c-red); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(11, 11, 11, 0.35); }

.form__submit { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.form__note { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-soft); max-width: 32ch; }

.form__success,
.form__error {
    display: none;
    padding: 28px;
    border-radius: var(--radius);
    font-family: var(--f-display);
    font-size: 1.25rem;
    line-height: 1.4;
}
.form__success { background: var(--c-green); color: var(--c-cream); }
.form__error { background: var(--c-red-deep); color: var(--c-cream); }
.form.is-sent .form__success { display: block; }
.form.is-sent .form__hide { display: none; }
.form.is-error .form__error { display: block; }
.form.is-sending button[type="submit"] { opacity: 0.6; pointer-events: none; }

/* FAQ */
.faq { border-top: 1px solid var(--c-line); }
.faq__item {
    border-bottom: 1px solid var(--c-line);
}
.faq__q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 28px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--f-display);
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--c-text);
    cursor: pointer;
}
.faq__q::after {
    content: "+";
    font-family: var(--f-mono);
    font-size: 1.4rem;
    color: var(--c-red);
    transition: transform 0.3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    color: var(--c-text-soft);
    line-height: 1.7;
}
.faq__item.is-open .faq__a { max-height: 600px; padding-bottom: 28px; }

/* --------------------------- Reveal ------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
