/* ============================================================
   GLITZ — AWARDS HUB
   Design Honour 2025 (Gold) + Tejomaya 2026 (Rose/Magenta)
   One page · Two chapters · One publication
   Uses header_march / footer_march — requires :root vars
============================================================ */
:root {
    --red:       #C8232B;
    --red-dk:    #9E1B22;
    --red-lt:    #E8454C;
    --red-tint:  #FDF1F1;
    --ink:       #0E0E0E;
    --charcoal:  #141414;
    --smoke:     #3A3A3A;
    --ash:       #7A7A7A;
    --stone:     #BFBBB7;
    --linen:     #F4F2EF;
    --ivory:     #FDFCFA;
    --white:     #FFFFFF;
    --serif:     'Cormorant Garamond', serif;
    --display:   'Bebas Neue', sans-serif;
    --sans:      'DM Sans', sans-serif;
    --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

.awards-page {
    /* Design Honour — Gold */
    --gold:      #B8934A;
    --gold-lt:   #D4AE6E;
    --gold-pale: #F7F0E3;
    --gold-dk:   #8A6C35;

    /* Tejomaya — Rose / Magenta */
    --rose:      #C4437A;
    --rose-lt:   #D9658F;
    --rose-dk:   #9A2F5C;
    --rose-pale: #FDF0F5;
    --rose-glow: rgba(196,67,122,0.15);

    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── READING PROGRESS ── */
.awards-page .reading-progress {
    position: fixed; top: 0; left: 0; right: 0; z-index: 700;
    height: 2px; display: flex; pointer-events: none;
}
.awards-page .rp-honour { background: var(--gold); width: 0%; transition: width .1s linear; box-shadow: 0 0 8px rgba(184,147,74,0.5); }
.awards-page .rp-tejomaya { background: var(--rose); width: 0%; transition: width .1s linear; box-shadow: 0 0 8px rgba(196,67,122,0.5); }

/* ── STICKY AWARDS JUMP BAR ── */
.awards-page .awards-jump-bar {
    position: sticky; top: 96px; z-index: 400;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--linen);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.awards-page .ajb-pill {
    height: 36px; padding: 0 20px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    border: none; border-radius: 2px; cursor: pointer; transition: all .2s;
    text-decoration: none; display: inline-flex; align-items: center;
}
.awards-page .ajb-pill-honour {
    background: rgba(184,147,74,0.15); color: var(--gold-lt);
}
.awards-page .ajb-pill-honour:hover { background: var(--gold); color: var(--ink); }
.awards-page .ajb-pill-tejomaya {
    background: rgba(196,67,122,0.15); color: var(--rose-lt);
}
.awards-page .ajb-pill-tejomaya:hover { background: var(--rose); color: var(--white); }

/* ── SHARED GRID ── */
.awards-page .arch-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
            linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 72px 72px;
}

/* ── SCROLL REVEAL ── */
.awards-page .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.awards-page .reveal.visible { opacity: 1; transform: translateY(0); }
.awards-page .rd1{transition-delay:.08s} .awards-page .rd2{transition-delay:.16s}
.awards-page .rd3{transition-delay:.24s} .awards-page .rd4{transition-delay:.32s}
.awards-page .rd5{transition-delay:.4s}

@keyframes fadeUp {
    from{opacity:0;transform:translateY(20px)}
    to{opacity:1;transform:translateY(0)}
}

/* ══════════════════════════════════════════════════
   AWARDS HUB HERO — Dark (like lp-hero)
═════════════════════════════════════════════════ */
.awards-page .hub-hero {
    color: var(--white);
    min-height: 65vh;
    background: var(--charcoal);
    display: flex; align-items: flex-end;
    padding: 48px 72px 72px;
    position: relative; overflow: hidden;
}
.awards-page .hub-hero .arch-grid { opacity: 0.7; }
.awards-page .hub-hero-bg-text {
    position: absolute; right: -20px; bottom: -40px;
    font-family: var(--display);
    font-size: clamp(160px, 22vw, 360px);
    letter-spacing: -10px; color: rgba(255,255,255,0.016);
    line-height: 0.85; pointer-events: none; user-select: none;
}
.awards-page .hub-content { position: relative; z-index: 2; }
.awards-page .hub-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.25); margin-bottom: 20px;
    animation: fadeUp .6s .2s var(--ease) both;
}
.awards-page .hub-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 300; line-height: 1.25; color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    animation: fadeUp .7s .35s var(--ease) both;
}
.awards-page .hub-title em { font-style: italic; color: rgba(255,255,255,0.35); }

/* Two award pills in hero */
.awards-page .hub-awards-strip {
    display: flex; gap: 3px;
    animation: fadeUp .7s .5s var(--ease) both;
}
.awards-page .hap {
    padding: 16px 28px;
    display: flex; flex-direction: column; gap: 5px;
    text-decoration: none;
    border-radius: 2px; transition: all .25s var(--ease);
    border: 1px solid transparent;
}
.awards-page .hap-honour {
    background: rgba(184,147,74,0.08);
    border-color: rgba(184,147,74,0.2);
}
.awards-page .hap-honour:hover { background: rgba(184,147,74,0.14); border-color: rgba(184,147,74,0.4); }
.awards-page .hap-tejomaya {
    background: rgba(196,67,122,0.08);
    border-color: rgba(196,67,122,0.2);
}
.awards-page .hap-tejomaya:hover { background: rgba(196,67,122,0.14); border-color: rgba(196,67,122,0.4); }
.awards-page .hap-label {
    font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
}
.awards-page .hap-honour .hap-label { color: var(--gold-lt); }
.awards-page .hap-tejomaya .hap-label { color: var(--rose-lt); }
.awards-page .hap-name {
    font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--white);
}
.awards-page .hap-edition { font-size: 11px; color: var(--ash); }
.awards-page .hap-arrow {
    margin-left: auto; font-size: 16px; color: rgba(255,255,255,0.2);
    align-self: center; transition: transform .25s;
}
.awards-page .hap:hover .hap-arrow { transform: translateX(4px); color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════
   CHAPTER DIVIDER
═════════════════════════════════════════════════ */
.awards-page .chapter-divider {
    display: flex; align-items: center;
    padding: 0 72px;
    height: 64px;
    position: relative; overflow: hidden;
}
.awards-page .cd-line { flex: 1; height: 1px; }
.awards-page .cd-label {
    padding: 0 28px;
    font-family: var(--display); font-size: 11px; letter-spacing: 4px;
    white-space: nowrap;
}

.awards-page .cd-honour { background: var(--gold-pale); border-top: 1px solid rgba(184,147,74,0.15); }
.awards-page .cd-honour .cd-line { background: rgba(184,147,74,0.2); }
.awards-page .cd-honour .cd-label { color: var(--gold-dk); }

.awards-page .cd-tejomaya { background: var(--rose-pale); border-top: 1px solid rgba(196,67,122,0.15); }
.awards-page .cd-tejomaya .cd-line { background: rgba(196,67,122,0.2); }
.awards-page .cd-tejomaya .cd-label { color: var(--rose-dk); }

/* ══════════════════════════════════════════════════
   CHAPTER ONE — DESIGN HONOUR 2025
═════════════════════════════════════════════════ */
.awards-page .dh-hero {
    background: var(--ink);
    color: var(--white);
    min-height: 88vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    padding: 0 72px 80px;
}
.awards-page .dh-year-bg {
    position: absolute; right: -30px; bottom: -60px;
    font-family: var(--display);
    font-size: clamp(200px, 28vw, 440px);
    letter-spacing: -14px; color: rgba(184,147,74,0.03);
    line-height: 0.85; pointer-events: none; user-select: none;
}
.awards-page .dh-edition-mark {
    position: absolute; top: 96px; right: 72px; text-align: right;
}
.awards-page .dem-roman {
    font-family: var(--serif); font-size: 96px; font-weight: 300;
    color: rgba(184,147,74,0.1); line-height: 1;
}
.awards-page .dem-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(184,147,74,0.3);
}
.awards-page .dh-accent {
    position: absolute; left: 72px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(184,147,74,0.35) 20%, rgba(184,147,74,0.35) 80%, transparent);
}
.awards-page .dh-content { position: relative; z-index: 2; padding-left: 28px; }
.awards-page .dh-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-lt); margin-bottom: 22px;
    display: flex; align-items: center; gap: 14px;
    animation: fadeUp .6s .1s var(--ease) both;
}
.awards-page .dh-eyebrow::before { content: '✦'; color: var(--gold); }
.awards-page .dh-headline {
    font-family: var(--serif);
    font-size: clamp(44px, 6.5vw, 96px);
    font-weight: 300; line-height: 0.93; color: var(--white);
    margin-bottom: 10px;
    animation: fadeUp .8s .25s var(--ease) both;
}
.awards-page .dh-headline em { font-style: italic; color: rgba(255,255,255,0.35); }
.awards-page .dh-headline .gh { color: var(--gold-lt); font-style: normal; }
.awards-page .dh-sub {
    font-family: var(--display); font-size: 13px; letter-spacing: 5px;
    color: rgba(184,147,74,0.4); margin-bottom: 28px;
    animation: fadeUp .6s .38s var(--ease) both;
}
.awards-page .dh-statement {
    font-family: var(--serif); font-size: clamp(15px, 1.6vw, 20px);
    font-style: italic; color: rgba(255,255,255,0.38); line-height: 1.65;
    max-width: 540px; margin-bottom: 52px;
    border-left: 2px solid rgba(184,147,74,0.35); padding-left: 24px;
    animation: fadeUp .7s .5s var(--ease) both;
}
.awards-page .dh-stats {
    display: flex; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 36px;
    animation: fadeUp .6s .62s var(--ease) both;
}
.awards-page .dhs-item {
    padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.awards-page .dhs-item:first-child { padding-left: 0; }
.awards-page .dhs-item:last-child { border-right: none; }
.awards-page .dhs-n { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--white); line-height: 1; }
.awards-page .dhs-n span { color: var(--gold-lt); font-size: 0.6em; }
.awards-page .dhs-l { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-top: 5px; }

/* Status banner */
.awards-page .status-banner {
    margin: 0; padding: 18px 72px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.awards-page .sb-honour   { background: var(--gold-pale); border-top: 1px solid rgba(184,147,74,0.2); border-bottom: 1px solid rgba(184,147,74,0.2); color: var(--ink); }
.awards-page .sb-tejomaya { background: var(--rose-pale); border-top: 1px solid rgba(196,67,122,0.2); border-bottom: 1px solid rgba(196,67,122,0.2); color: var(--ink); }
.awards-page .sb-left { display: flex; align-items: center; gap: 16px; }
.awards-page .sb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.awards-page .sb-dot-closed { background: var(--ash); }
.awards-page .sb-dot-open   { background: var(--rose); box-shadow: 0 0 8px rgba(196,67,122,0.6); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{opacity:.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }
.awards-page .sb-text { font-size: 13px; color: var(--smoke); }
.awards-page .sb-text strong { color: var(--ink); }
.awards-page .sb-right { display: flex; gap: 10px; align-items: center; }
.awards-page .sb-btn {
    height: 36px; padding: 0 20px;
    font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    border-radius: 2px; cursor: pointer; border: none; transition: all .2s;
    text-decoration: none; display: inline-flex; align-items: center;
}
.awards-page .sb-btn-gold { background: var(--gold); color: var(--ink); }
.awards-page .sb-btn-gold:hover { background: var(--gold-lt); }
.awards-page .sb-btn-rose { background: var(--rose); color: var(--white); }
.awards-page .sb-btn-rose:hover { background: var(--rose-lt); }
.awards-page .sb-btn-outline {
    background: transparent; color: var(--smoke);
    border: 1px solid rgba(0,0,0,0.12);
}
.awards-page .sb-btn-outline:hover { color: var(--ink); border-color: rgba(0,0,0,0.25); }

/* Key details band — Light (like lp-magazine) */
.awards-page .details-band {
    padding: 56px 72px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: start;
}
.awards-page .db-honour   { background: var(--white); }
.awards-page .db-tejomaya { background: var(--linen); }
.awards-page .dc-label {
    font-size: 9px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
    margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.awards-page .dc-label::after { content: ''; flex: 1; height: 1px; }
.awards-page .dcl-gold  { color: var(--gold-dk); }
.awards-page .dcl-gold::after  { background: rgba(184,147,74,0.25); }
.awards-page .dcl-rose  { color: var(--rose-dk); }
.awards-page .dcl-rose::after  { background: rgba(196,67,122,0.25); }
.awards-page .dc-title { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.3; margin-bottom: 14px; }
.awards-page .dc-body  { font-size: 13.5px; line-height: 1.8; color: var(--smoke); }
.awards-page .detail-items { display: flex; flex-direction: column; gap: 0; }
.awards-page .detail-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.awards-page .detail-item:last-child { border-bottom: none; }
.awards-page .di-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ash); width: 130px; flex-shrink: 0; padding-top: 1px;
}
.awards-page .di-value { font-size: 14px; color: var(--smoke); line-height: 1.5; }
.awards-page .di-value strong { color: var(--ink); font-weight: 500; }
.awards-page .di-value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.15); transition: border-color .2s; }
.awards-page .di-value a:hover { border-color: var(--red); }

/* Categories section — Light (like lp-designers) */
.awards-page .categories-section { padding: 80px 72px 100px; }
.awards-page .cs-honour   { background: var(--linen); }
.awards-page .cs-tejomaya { background: var(--white); }
.awards-page .cs-header { margin-bottom: 48px; }
.awards-page .cs-eyebrow {
    font-size: 9px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
    margin-bottom: 14px; display: flex; align-items: center; gap: 14px;
}
.awards-page .cs-eyebrow::after { content: ''; flex: 1; height: 1px; }
.awards-page .cse-gold  { color: var(--gold-dk); } .awards-page .cse-gold::after  { background: rgba(184,147,74,0.15); }
.awards-page .cse-rose  { color: var(--rose-dk); } .awards-page .cse-rose::after  { background: rgba(196,67,122,0.15); }
.awards-page .cs-title {
    font-family: var(--serif); font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.1;
}
.awards-page .cs-note { font-size: 13px; color: var(--smoke); margin-top: 10px; max-width: 640px; line-height: 1.7; }
.awards-page .cat-group { margin-bottom: 40px; }
.awards-page .cat-group-label {
    font-family: var(--display); font-size: 11px; letter-spacing: 4px;
    padding: 10px 0; margin-bottom: 2px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.awards-page .cgl-gold { color: var(--gold-dk); }
.awards-page .cgl-rose { color: var(--rose-dk); }
.awards-page .cat-grid {
    display: grid; gap: 2px;
    background: rgba(0,0,0,0.03);
}
.awards-page .cat-grid-3 { grid-template-columns: repeat(3, 1fr); }
.awards-page .cat-grid-4 { grid-template-columns: repeat(4, 1fr); }
.awards-page .cat-grid-5 { grid-template-columns: repeat(5, 1fr); }
.awards-page .cat-card {
    background: var(--white); padding: 24px 24px 22px;
    position: relative; overflow: hidden;
    transition: background .25s;
    border: 1px solid rgba(0,0,0,0.04);
}
.awards-page .cs-tejomaya .cat-card { background: var(--ivory); }
.awards-page .cat-card:hover { background: var(--linen); }
.awards-page .cat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: transparent; transition: background .3s;
}
.awards-page .cat-card:hover::before { background: rgba(184,147,74,0.4); }
.awards-page .cs-tejomaya .cat-card:hover::before { background: rgba(196,67,122,0.4); }
.awards-page .cc-num {
    font-family: var(--display); font-size: 32px; letter-spacing: 2px;
    line-height: 1; margin-bottom: 12px;
}
.awards-page .ccn-gold { color: rgba(184,147,74,0.12); }
.awards-page .ccn-rose { color: rgba(196,67,122,0.12); }
.awards-page .cc-name {
    font-family: var(--serif); font-size: 15px; font-weight: 500;
    color: var(--ink); line-height: 1.35; margin-bottom: 6px;
}
.awards-page .cc-sub { font-size: 11px; color: var(--ash); line-height: 1.5; }
.awards-page .cat-card-special {
    border: 1px solid rgba(184,147,74,0.25);
    background: var(--gold-pale) !important;
}
.awards-page .cat-card-special::before { background: var(--gold) !important; }
.awards-page .cat-card-rose-special {
    border: 1px solid rgba(196,67,122,0.25);
    background: var(--rose-pale) !important;
}
.awards-page .cat-card-rose-special::before { background: var(--rose) !important; }

/* Process section — Light */
.awards-page .process-section { padding: 80px 72px 100px; }
.awards-page .ps-honour   { background: var(--ivory); }
.awards-page .ps-tejomaya { background: var(--linen); }
.awards-page .process-steps {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
    background: rgba(0,0,0,0.03); margin-top: 48px;
}
.awards-page .ps-step {
    background: var(--white); padding: 28px 24px;
    position: relative;
    transition: background .25s;
    border: 1px solid rgba(0,0,0,0.04);
}
.awards-page .ps-honour .ps-step   { background: var(--white); }
.awards-page .ps-tejomaya .ps-step { background: var(--ivory); }
.awards-page .ps-step:hover { background: var(--linen) !important; }
.awards-page .ps-step::after {
    content: ''; position: absolute; top: 50%; right: -1px;
    transform: translateY(-50%);
    width: 1px; height: 40%; background: rgba(0,0,0,0.06);
}
.awards-page .ps-step:last-child::after { display: none; }
.awards-page .pss-num {
    font-family: var(--display); font-size: 36px; letter-spacing: 2px;
    line-height: 1; margin-bottom: 14px;
}
.awards-page .pssn-gold { color: rgba(184,147,74,0.15); }
.awards-page .pssn-rose { color: rgba(196,67,122,0.15); }
.awards-page .pss-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.awards-page .pss-body  { font-size: 12px; color: var(--smoke); line-height: 1.6; }

/* Eligibility & Submission — Light */
.awards-page .elig-sub-section {
    padding: 80px 72px 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: rgba(0,0,0,0.02);
}
.awards-page .ess-honour   { background: var(--white); }
.awards-page .ess-tejomaya { background: var(--linen); }
.awards-page .es-col { padding: 48px 44px; }
.awards-page .es-col-dark  { background: var(--white); }
.awards-page .es-col-dark2 { background: var(--ivory); }
.awards-page .es-col-rose  { background: var(--white); }
.awards-page .es-col-rose2 { background: var(--ivory); }
.awards-page .esc-eyebrow {
    font-size: 9px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
    margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.awards-page .esc-eyebrow::after { content: ''; flex: 1; height: 1px; }
.awards-page .esce-gold { color: var(--gold-dk); } .awards-page .esce-gold::after { background: rgba(184,147,74,0.2); }
.awards-page .esce-rose { color: var(--rose-dk); } .awards-page .esce-rose::after { background: rgba(196,67,122,0.2); }
.awards-page .esc-title {
    font-family: var(--serif); font-size: 24px; font-weight: 300; font-style: italic;
    color: var(--ink); margin-bottom: 24px; line-height: 1.2;
}
.awards-page .esc-list { display: flex; flex-direction: column; gap: 0; }
.awards-page .esc-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 13.5px; color: var(--smoke); line-height: 1.6;
}
.awards-page .esc-item:last-child { border-bottom: none; }
.awards-page .esc-bullet {
    width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}
.awards-page .esb-gold { background: var(--gold); }
.awards-page .esb-rose { background: var(--rose); }
.awards-page .esc-item strong { color: var(--ink); font-weight: 500; }

/* ══════════════════════════════════════════════════
   CHAPTER TWO — TEJOMAYA 2026
═════════════════════════════════════════════════ */
.awards-page .tj-hero {
    background: var(--charcoal);
    color: var(--white);
    min-height: 88vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    padding: 0 72px 80px;
}
.awards-page .tj-accent {
    position: absolute; left: 72px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(196,67,122,0.4) 20%, rgba(196,67,122,0.4) 80%, transparent);
}
.awards-page .tj-name-bg {
    position: absolute; right: -20px; bottom: -50px;
    font-family: var(--display);
    font-size: clamp(100px, 14vw, 220px);
    letter-spacing: -4px; color: rgba(196,67,122,0.025);
    line-height: 0.85; pointer-events: none; user-select: none;
    text-align: right;
}
.awards-page .tj-edition-mark {
    position: absolute; top: 96px; right: 72px; text-align: right;
}
.awards-page .tjem-roman {
    font-family: var(--serif); font-size: 80px; font-weight: 300;
    color: rgba(196,67,122,0.1); line-height: 1;
}
.awards-page .tjem-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(196,67,122,0.3);
}
.awards-page .tj-brand {
    position: relative; z-index: 2; padding-left: 28px; margin-bottom: 28px;
    animation: fadeUp .6s .1s var(--ease) both;
}
.awards-page .tjb-glitz {
    font-family: var(--display); font-size: 13px; letter-spacing: 4px;
    color: rgba(255,255,255,0.3); margin-bottom: 4px;
}
.awards-page .tjb-tejomaya {
    font-family: var(--serif); font-size: clamp(48px, 7vw, 100px);
    font-weight: 300; font-style: italic;
    color: var(--white); line-height: 0.95;
}
.awards-page .tjb-tejomaya .rose-word { color: var(--rose-lt); font-style: normal; }
.awards-page .tjb-award-line {
    font-family: var(--display); font-size: clamp(20px, 2.5vw, 36px);
    letter-spacing: 6px; color: rgba(255,255,255,0.35);
    margin-top: 6px;
}
.awards-page .tj-content { position: relative; z-index: 2; padding-left: 28px; }
.awards-page .tj-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--rose-lt); margin-bottom: 18px;
    display: flex; align-items: center; gap: 14px;
    animation: fadeUp .6s .25s var(--ease) both;
}
.awards-page .tj-eyebrow::before { content: '✦'; color: var(--rose); }
.awards-page .tj-statement {
    font-family: var(--serif); font-size: clamp(15px, 1.6vw, 20px);
    font-style: italic; color: rgba(255,255,255,0.4); line-height: 1.65;
    max-width: 580px; margin-bottom: 48px;
    border-left: 2px solid rgba(196,67,122,0.35); padding-left: 24px;
    animation: fadeUp .7s .4s var(--ease) both;
}
.awards-page .tj-calling-strip {
    display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 48px;
    animation: fadeUp .6s .52s var(--ease) both;
}
.awards-page .tjcs-pill {
    padding: 10px 18px; border-radius: 2px;
    background: rgba(196,67,122,0.08); border: 1px solid rgba(196,67,122,0.18);
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    transition: all .2s;
}
.awards-page .tjcs-pill:hover { background: rgba(196,67,122,0.16); color: var(--white); }
.awards-page .tj-stats {
    display: flex; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 36px;
    animation: fadeUp .6s .64s var(--ease) both;
}
.awards-page .tjs-item { padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.05); text-align: center; }
.awards-page .tjs-item:first-child { padding-left: 0; }
.awards-page .tjs-item:last-child { border-right: none; }
.awards-page .tjs-n { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--white); line-height: 1; }
.awards-page .tjs-n span { color: var(--rose-lt); font-size: 0.6em; }
.awards-page .tjs-l { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-top: 5px; }

/* ── TOAST ── */
.awards-page #toast {
    position: fixed; bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(64px);
    background: #111; color: var(--white);
    padding: 12px 22px; border-radius: 3px;
    font-size: 13px; display: flex; align-items: center; gap: 10px;
    z-index: 2000; opacity: 0;
    transition: transform .4s var(--ease), opacity .4s;
    white-space: nowrap; backdrop-filter: blur(20px);
}
.awards-page #toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── FOOTER (footer_march) ── */
.lp-footer {
  background: var(--charcoal);
  padding: 64px 48px 40px;
}
.footer-grid-lp {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fl-brand .fl-logo {
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}
.fl-brand p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ash);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 24px;
}
.fl-brand .fl-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fl-brand .fl-tagline::before { content: '—'; }
.fl-col h5 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.fl-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl-col ul li a {
  font-size: 13px;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}
.fl-col ul li a:hover { color: var(--red-lt); }
.footer-bottom-lp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-lp p { font-size: 12px; color: var(--smoke); }
.footer-social { display: flex; gap: 12px; }
.fs-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--ash);
  text-decoration: none;
  transition: all 0.2s;
}
.fs-btn:hover { border-color: var(--red); color: var(--red-lt); }

@media (max-width: 1024px) {
  .footer-grid-lp { grid-template-columns: 1fr 1fr; }
  .lp-footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 768px) {
  .footer-grid-lp { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-lp { flex-direction: column; gap: 20px; text-align: center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .awards-page .hub-hero, .awards-page .dh-hero, .awards-page .tj-hero,
    .awards-page .details-band, .awards-page .categories-section, .awards-page .process-section {
        padding-left: 32px; padding-right: 32px;
    }
    .awards-page .status-banner { padding-left: 32px; padding-right: 32px; }
    .awards-page .elig-sub-section { padding-left: 32px; padding-right: 32px; }
    .awards-page .process-steps { grid-template-columns: repeat(3, 1fr); }
    .awards-page .cat-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .awards-page .elig-sub-section { grid-template-columns: 1fr; }
    .awards-page .details-band { grid-template-columns: 1fr; gap: 40px; }
    .awards-page .hub-awards-strip { flex-direction: column; }
}
@media (max-width: 720px) {
    .awards-page .cat-grid-3, .awards-page .cat-grid-4 { grid-template-columns: 1fr 1fr; }
    .awards-page .process-steps { grid-template-columns: 1fr 1fr; }
    .awards-page .dh-edition-mark, .awards-page .tj-edition-mark { display: none; }
    .awards-page .dh-stats, .awards-page .tj-stats { flex-wrap: wrap; }
    .awards-page .awards-jump-bar { top: 96px; }
}
