/* ===========================
   Magellan Awards — Preview Page CSS
   =========================== */

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black-800);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--header-height) + var(--banner-height) + 6rem) 3rem 6rem;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-logo {
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-logo img {
    width: clamp(300px, 45vw, 700px);
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,0.4));
}

@media (max-width: 680px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo {
        order: -1;
        margin-bottom: 2rem;
    }
    .hero-logo img {
        width: 280px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--color-primary);
    padding: 0.5em 1em;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    display: block;
}

.text-red {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s infinite;
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Intro Section */
.section--intro {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.intro-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.intro-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.intro-content {
    max-width: 900px;
    text-align: center;
}

.intro-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.intro-subhead {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: left;
}

/* About Split */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about-split {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

.about-left {
    position: relative;
}

.about-accent {
    width: 48px;
    height: 4px;
    background: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 400px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.about-stat:first-child {
    border-top: 1px solid var(--color-border);
}

.about-stat__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    font-variant-numeric: tabular-nums;
    min-width: 250px;
    flex-shrink: 0;
    text-align: right;
}

.about-stat__meta {
    flex: 1;
    text-align: left;
}

.about-stat__label {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.about-stat__sub {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .about-stat {
        gap: 1.25rem;
    }
    .about-stat__number {
        width: 90px;
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-item {
    min-width: 140px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-3-scroll-wrapper {
        position: relative;
    }
    .grid-3-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to right, transparent, var(--white));
        pointer-events: none;
        z-index: 1;
    }
    .section--cream .grid-3-scroll-wrapper::after {
        background: linear-gradient(to right, transparent, #faf8f5);
    }
    .grid-3 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        padding-right: 60px;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-300) transparent;
    }
    .grid-3::-webkit-scrollbar {
        height: 4px;
    }
    .grid-3::-webkit-scrollbar-track {
        background: transparent;
    }
    .grid-3::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 2px;
    }
    .grid-3 > * {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

.grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Cards */
.card {
    background: var(--white);
    transition: all 0.25s;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-winner {
    border: 1px solid var(--color-border);
}

.card-winner__image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    overflow: hidden;
}

.card-winner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.card-winner:hover .card-winner__image img {
    transform: scale(1.03);
}

.card-winner__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.award-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-badge--gold {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: var(--black-900);
}

.card-winner__content {
    padding: 1.5rem;
}

.card-winner__year {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.card-winner__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.5rem 0;
}

.card-winner__title a:hover {
    color: var(--color-primary);
}

.card-winner__company {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.card-winner__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

/* Recipients River */
.recipients-river {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.recipients-river__item {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

.recipients-river__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.recipients-river__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .recipients-river-wrapper {
        position: relative;
    }
    .recipients-river-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to right, transparent, #faf8f5);
        pointer-events: none;
        z-index: 1;
    }
    .recipients-river {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        padding-right: 60px;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-300) transparent;
    }
    .recipients-river::-webkit-scrollbar { height: 4px; }
    .recipients-river::-webkit-scrollbar-track { background: transparent; }
    .recipients-river::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
    .recipients-river__item {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}

/* Recipient Lightbox */
.recipient-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.recipient-lightbox.active {
    display: flex;
}

.recipient-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.recipient-lightbox__content {
    position: relative;
    background: var(--white);
    max-width: 700px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: lightboxIn 0.25s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.recipient-lightbox__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipient-lightbox__close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.recipient-lightbox__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}

.recipient-lightbox__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipient-lightbox__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.recipient-lightbox__info {
    padding: 1.5rem 2rem 2rem;
}

.recipient-lightbox__year {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.recipient-lightbox__title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.4rem 0;
}

.recipient-lightbox__company {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.recipient-lightbox__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.recipient-lightbox__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recipient-lightbox__prev,
.recipient-lightbox__next {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.recipient-lightbox__prev { margin-left: -22px; border-radius: 0 4px 4px 0; }
.recipient-lightbox__next { margin-right: -22px; border-radius: 4px 0 0 4px; }

.recipient-lightbox__prev:hover,
.recipient-lightbox__next:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .recipient-lightbox__content {
        width: 95vw;
    }
    .recipient-lightbox__info {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    .recipient-lightbox__prev { margin-left: 0.5rem; }
    .recipient-lightbox__next { margin-right: 0.5rem; }
}

/* Category Card */
a.card-category {
    text-decoration: none;
    color: inherit;
}

.card-category {
    position: relative;
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.25s;
}

.card-category:hover {
    border-color: var(--color-primary);
}

.card-category:hover .card-category__icon {
    color: var(--color-primary);
}

.card-category__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.card-category__icon svg {
    width: 100%;
    height: 100%;
}

.card-category__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-category__count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .card-category {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.25rem;
        text-align: left;
        border-bottom: 1px solid var(--color-border);
        border-left: none;
        border-right: none;
        border-top: none;
        cursor: pointer;
    }
    .card-category:first-child {
        border-top: 1px solid var(--color-border);
    }
    .card-category__icon {
        width: 32px;
        height: 32px;
        margin: 0;
        flex-shrink: 0;
    }
    .card-category__title {
        margin-bottom: 0;
        flex: 1;
    }
    .card-category__count {
        display: none;
    }
    .card-category::after {
        content: '\2192';
        font-size: 1.25rem;
        color: var(--gray-400);
    }
}

/* How It Works */
.steps-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.steps-header__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.5);
}

.steps-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .steps-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.step-col {
    position: relative;
    padding: 0 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .step-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255,255,255,0.1);
    }

    .step-col:first-child {
        padding-left: 0;
    }

    .step-col:last-child {
        padding-right: 0;
    }
}

.step-col__number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.12);
    letter-spacing: -0.04em;
    margin-bottom: -0.5rem;
    position: relative;
}

.step-col__accent {
    width: 32px;
    height: 3px;
    background: var(--color-primary);
    margin-bottom: 1rem;
}

.step-col__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-col__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 767px) {
    .steps-scroll-wrapper {
        position: relative;
    }
    .steps-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to right, transparent, var(--black-800));
        pointer-events: none;
        z-index: 1;
    }
    .steps-columns {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-bottom: 1rem;
        padding-right: 60px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
    }
    .steps-columns::-webkit-scrollbar {
        height: 4px;
    }
    .steps-columns::-webkit-scrollbar-track {
        background: transparent;
    }
    .steps-columns::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 2px;
    }
    .step-col {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 0 1.5rem;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0;
    }
    .step-col:first-child {
        padding-left: 0;
    }
    .step-col:last-child {
        border-right: none;
    }
}

/* Judges Carousel */
.judges-carousel {
    position: relative;
}

.judges-carousel__track-wrapper {
    overflow: hidden;
}

.judges-carousel__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.judges-carousel__track .card-judge {
    flex: 0 0 calc((100% - 7.5rem) / 6);
    min-width: 160px;
}

.judges-carousel__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.judges-carousel__btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.judges-carousel__btn:hover {
    color: var(--color-primary);
    transform: translateX(0);
}

.judges-carousel__btn--prev:hover {
    transform: translateX(-4px);
}

.judges-carousel__btn--next:hover {
    transform: translateX(4px);
}

.judges-carousel__btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.judges-carousel__progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.judges-carousel__progress-bar {
    width: 120px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.judges-carousel__progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.judges-carousel__counter {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    min-width: 60px;
    text-align: center;
}

.judges-carousel__counter span {
    color: var(--black);
    font-size: 1.125rem;
}

@media (max-width: 1200px) {
    .judges-carousel__track .card-judge {
        flex: 0 0 calc((100% - 6rem) / 5);
    }
}

@media (max-width: 992px) {
    .judges-carousel__track .card-judge {
        flex: 0 0 calc((100% - 4.5rem) / 4);
    }
}

@media (max-width: 768px) {
    .judges-carousel__track .card-judge {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
}

@media (max-width: 576px) {
    .judges-carousel__track .card-judge {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

/* Judge Card */
.card-judge {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--color-border);
    flex: 0 0 200px;
    background: var(--white);
}

.card-judge__headshot {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-100);
}

.card-judge__headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.card-judge:hover .card-judge__headshot img {
    filter: grayscale(0%);
}

.card-judge__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-judge__title {
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.card-judge__company {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Sort Controls */
.sort-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: var(--black-900);
    color: var(--black-900);
}

.sort-btn.active {
    background: var(--black-900);
    border-color: var(--black-900);
    color: var(--white);
}

/* What's New Cards */
.card-news {
    border: 1px solid var(--color-border);
    background: var(--white);
    transition: all 0.25s;
}

.card-news:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-news__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.card-news__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.card-news:hover .card-news__image img {
    transform: scale(1.03);
}

.card-news__content {
    padding: 1.75rem;
}

.card-news__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-news__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-news__title a:hover {
    color: var(--color-primary);
}

.card-news__excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-news__link {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    transition: opacity 0.2s;
}

.card-news__link:hover {
    opacity: 0.7;
}

/* Mobile — page-specific overrides */
@media (max-width: 768px) {
    .hero-content { padding: calc(var(--header-height) + var(--banner-height) + 2rem) 1.5rem 6rem; }
    .hero-scroll { display: none; }
    .section--intro { padding: 3rem 0; }
    .about-split { gap: 2rem; }
    .about-headline { font-size: 2rem; }
    .about-stat__number { min-width: 120px; font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-logo img { width: 220px; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.875rem; }
    .hero-cta .btn { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
    .about-stat { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .about-stat__number { min-width: auto; text-align: left; }
    .grid-3 > * { flex: 0 0 85vw; }
}

/* Scroll Hint — mobile only */
.scroll-hint { display: none; }
@media (max-width: 768px) {
    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.375rem;
        font-size: 0.6875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gray-400);
        margin-top: 0.75rem;
        transition: opacity 0.4s ease;
    }
    .scroll-hint__arrow {
        animation: hint-bounce 1.5s ease-in-out infinite;
    }
    @keyframes hint-bounce {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
    .scroll-hint.is-hidden {
        opacity: 0;
        pointer-events: none;
    }
    .section--dark .scroll-hint {
        color: rgba(255, 255, 255, 0.4);
    }
}
