@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dmsans-latin-var.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;
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dmsans-latin-ext-var.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;
}

:root {
    --ink: #1C1C1C;
    --charcoal: #393537;
    --ivory: #E0D7CC;
    --gold: #D2AF81;
    --gold-dark: #C3A072;
    --white: #FFFFFF;
    --sand: #E9E2D4;
    --espresso: #332A20;
    --error: #9B3D2E;

    --font-display: 'DM Sans', 'Segoe UI', Arial, sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', Arial, sans-serif;

    --container-max: 1440px;
    --container-pad: clamp(20px, 6vw, 96px);
    --section-pad: clamp(88px, 12vw, 160px);

    --radius-sm: 4px;
    --radius-md: 8px;

    --z-header: 1000;
    --z-cta: 1100;
    --z-preloader: 9000;
    --z-skip: 10000;

    --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, p, ul, fieldset, legend { margin: 0; padding: 0; }
fieldset { border: 0; min-width: 0; }
ul { list-style: none; }

a { color: inherit; }

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

:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: -9999px;
    top: 0;
    z-index: var(--z-skip);
    padding: 12px 20px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus { left: 0; }

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.label-gold { color: var(--charcoal); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.btn-gold {
    background: var(--ink);
    color: var(--white);
}
.btn-gold:hover { background: var(--charcoal); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

.btn-text {
    position: relative;
    display: block;
    overflow: hidden;
}
.btn-text-a, .btn-text-b {
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.btn-text-b {
    position: absolute;
    inset: 0;
    transform: translateY(110%);
}
.btn:hover .btn-text-a { transform: translateY(-110%); }
.btn:hover .btn-text-b { transform: translateY(0); }
.btn[disabled] .btn-text-a, .btn[disabled]:hover .btn-text-a { transform: none; }
.btn[disabled] .btn-text-b, .btn[disabled]:hover .btn-text-b { transform: translateY(110%); }

.link-quiet {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 28, 28, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.4s var(--ease-out);
}
.link-quiet:hover { border-color: var(--ink); }

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: var(--z-header);
    color: var(--ink);
    transition: color 0.5s var(--ease-out);
}
.home .site-header { display: none; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 18px;
}

.brand { display: block; color: inherit; }
.brand svg { width: clamp(132px, 14vw, 176px); height: auto; }

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.4s var(--ease-out);
}
.nav-link:hover { opacity: 1; }

/* First Light: preloader */

.fl-preloader {
    position: fixed;
    inset: 0;
    z-index: var(--z-preloader);
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    --fl-mask-y: 0%;
    -webkit-mask-image: radial-gradient(ellipse 130% 55% at 50% 100%, rgba(0, 0, 0, 0) 90%, #000 100%);
    mask-image: radial-gradient(ellipse 130% 55% at 50% 100%, rgba(0, 0, 0, 0) 90%, #000 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 300%;
    mask-size: 100% 300%;
    -webkit-mask-position: 50% var(--fl-mask-y);
    mask-position: 50% var(--fl-mask-y);
    animation: flPreKill 0.4s ease 4.8s forwards;
}
@keyframes flPreKill {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.fl-preloader-mark {
    width: clamp(60px, 7.5vw, 92px);
    color: var(--espresso);
    opacity: 0;
    animation: flMarkIn 0.9s ease forwards, flBreath 2.4s ease-in-out 0.9s infinite, flMarkOut 0.8s ease 3.3s forwards;
}
@keyframes flMarkIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes flBreath {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.985); }
}
@keyframes flMarkOut {
    to { opacity: 0; transform: scale(0.8); }
}
.fl-preloader-lockup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(240px, 30vw, 400px);
    color: var(--espresso);
    opacity: 0;
    transform: translate(-50%, -50%) translateY(10px);
    animation: flLockupIn 1s ease 3.6s forwards;
}
@keyframes flLockupIn {
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* First Light: hero */

.fl-hero {
    position: relative;
    height: 100svh;
    overflow: clip;
    background: url('../images/hero-poster.webp') center / cover no-repeat;
}
.fl-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fl-hero-video.is-live { opacity: 1; }

.fl-vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 64% 54% at 50% 50%, rgba(44, 35, 25, 0.30) 0%, rgba(44, 35, 25, 0) 74%),
        radial-gradient(circle, rgba(30, 24, 16, 0) 52%, rgba(30, 24, 16, 0.20));
}

.fl-hero-content {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px var(--container-pad);
}

.fl-hero-center {
    --fl-logo-w: clamp(240px, 30vw, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-block: auto;
}
.fl-hero-logo-wrap { margin: 0; }
.fl-hero-logo {
    display: block;
    width: var(--fl-logo-w);
    color: var(--white);
    filter: drop-shadow(0 1px 16px rgba(44, 35, 25, 0.3));
}
.fl-hero-logo svg { width: 100%; height: auto; }
.fl-hero-tagline {
    margin: clamp(22px, 3.5vh, 34px) 0 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 14px rgba(44, 35, 25, 0.4);
}
.fl-hero-tagline-inner {
    display: inline-block;
    will-change: transform;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

/* Apply */

.apply {
    background: var(--white);
    padding-block: clamp(56px, 7vw, 96px) var(--section-pad);
}

.apply-wrap { max-width: 920px; }

.apply-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.5vw, 24px);
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 64px);
}
.apply-head-mark { display: block; width: clamp(40px, 5vw, 54px); color: var(--ink); }
.apply-head-mark svg { width: 100%; height: auto; }

.apply-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.apply-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: var(--radius-md);
    padding: clamp(28px, 4vw, 56px);
    box-shadow: 0 2px 6px rgba(28, 28, 28, 0.04), 0 24px 64px rgba(28, 28, 28, 0.07);
    overflow: hidden;
}
.apply-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--charcoal), transparent);
}

.form-group { margin-bottom: clamp(32px, 4vw, 44px); }

.group-legend {
    display: flex;
    align-items: baseline;
    gap: 12px;
    width: 100%;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    margin-bottom: 22px;
}
.group-num {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group > .form-grid + .field,
.form-group > .field + .field { margin-top: 20px; }

.field { display: flex; flex-direction: column; }

.field-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.5;
}
.req { color: var(--charcoal); }
.opt {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(28, 28, 28, 0.45);
    margin-left: 6px;
}

.field-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(28, 28, 28, 0.24);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field-input:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(28, 28, 28, 0.14);
}
.field-input.is-error { border-color: var(--error); }
.field-input.is-error:focus { box-shadow: 0 0 0 3px rgba(155, 61, 46, 0.18); }

.field-textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }
.field-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}
.select-caret {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--charcoal);
    border-bottom: 1.5px solid var(--charcoal);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.field-error {
    display: none;
    font-size: 13px;
    color: var(--error);
    margin-top: 7px;
    line-height: 1.4;
}
.field-error.is-visible { display: block; }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid rgba(28, 28, 28, 0.24);
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.chip:hover { border-color: rgba(28, 28, 28, 0.55); }
.chip[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dropzone {
    position: relative;
    border: 1px dashed rgba(28, 28, 28, 0.34);
    border-radius: var(--radius-md);
    background: rgba(28, 28, 28, 0.03);
    padding: clamp(24px, 3vw, 36px);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--charcoal); }
.dropzone.is-drag {
    border-color: var(--charcoal);
    background: rgba(28, 28, 28, 0.05);
}

.dropzone-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}
.dropzone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropzone-icon svg { width: 18px; height: 18px; }
.dropzone-text { font-size: 15px; color: var(--ink); }
.dropzone-text strong { font-weight: 600; }
.dropzone-hint {
    font-size: 12.5px;
    color: rgba(28, 28, 28, 0.55);
    line-height: 1.5;
}

.file-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(28, 28, 28, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 14px;
}
.file-item-icon {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: rgba(57, 53, 55, 0.10);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.file-item-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ink);
}
.file-item-size { flex: none; font-size: 12.5px; color: rgba(28, 28, 28, 0.5); }
.file-item-remove {
    flex: none;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.file-item-remove:hover { background: rgba(155, 61, 46, 0.1); color: var(--error); }

.form-banner {
    background: rgba(155, 61, 46, 0.08);
    border: 1px solid rgba(155, 61, 46, 0.35);
    border-radius: var(--radius-sm);
    color: var(--error);
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    padding-block: 18px;
    font-size: 16px;
}
.btn-submit[disabled] {
    cursor: default;
    opacity: 0.7;
}

.form-note {
    margin-top: 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(28, 28, 28, 0.6);
    text-align: center;
}
.form-note a {
    color: var(--ink);
    font-weight: 500;
    text-decoration-color: var(--charcoal);
    text-underline-offset: 3px;
}

.apply-success[hidden] { display: none; }
.apply-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 40px);
    animation: flFadeUp 0.7s var(--ease-out);
}
@keyframes flFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.file-item { animation: flFadeUp 0.4s var(--ease-out); }
.success-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.success-badge svg { width: 26px; height: 26px; }
.success-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ink);
}
.success-copy {
    margin-top: 16px;
    max-width: 400px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--charcoal);
}
.success-note {
    margin-top: 20px;
    font-size: 13.5px;
    color: rgba(28, 28, 28, 0.6);
}
.success-note a {
    color: var(--ink);
    font-weight: 500;
    text-decoration-color: var(--charcoal);
    text-underline-offset: 3px;
}

/* Footer */

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding-block: clamp(28px, 3.5vw, 44px);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px 32px;
}
.footer-brand { display: block; justify-self: start; color: var(--white); }
.footer-brand svg { width: clamp(30px, 3vw, 38px); height: auto; }
.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    gap: 2px;
    padding-block: 7px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}
.footer-link {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.4s var(--ease-out);
}
.footer-link:hover { border-color: var(--white); }
@media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 14px; text-align: center; }
    .footer-brand, .footer-meta { justify-self: center; }
    .footer-meta { align-items: center; text-align: center; }
}

/* Home: single static screen, footer overlays the video edge */

.home { overflow: hidden; }
.home .site-footer {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 20;
    background: linear-gradient(to top, rgba(30, 24, 16, 0.55), rgba(30, 24, 16, 0));
    padding-block: 30px 16px;
}
.home .footer-brand svg { width: 26px; }
.home .footer-meta { font-size: 11.5px; padding-block: 0; gap: 1px; color: rgba(255, 255, 255, 0.75); }
.home .footer-link { font-size: 13px; }
@media (max-width: 860px) {
    .home .site-footer { padding-block: 22px 12px; }
    .home .footer-inner { gap: 6px; }
}

/* Plain pages */

.page-plain { padding: 160px 0 96px; }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

/* Responsive */

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .brand svg { width: 120px; }
    .header-inner { padding-block: 14px; }
    .nav-link { font-size: 12.5px; }
    .fl-hero-center { --fl-logo-w: clamp(220px, 58vw, 320px); }
}

@media (max-width: 480px) {
    .btn { padding: 14px 24px; }
    .btn-sm { padding: 10px 16px; font-size: 13px; }
    .header-nav { gap: 14px; }
    .brand svg { width: 106px; }
    .fl-hero-center { --fl-logo-w: 66vw; }
    .chips { gap: 8px; }
    .chip { font-size: 13px; padding: 8px 13px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fl-preloader { display: none; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Upload feedback */

.dropzone-text-drop { display: none; }
.dropzone.is-drag {
    border-color: var(--ink);
    background: rgba(28, 28, 28, 0.05);
    box-shadow: 0 0 0 4px rgba(28, 28, 28, 0.07);
}
.dropzone.is-drag .dropzone-text-default { display: none; }
.dropzone.is-drag .dropzone-text-drop { display: inline; }

.file-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.file-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-item-size {
    min-width: 48px;
    text-align: right;
    font-size: 12.5px;
    color: var(--charcoal);
}
.file-item-bar {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: rgba(28, 28, 28, 0.08);
    overflow: hidden;
}
.file-item-fill {
    display: block;
    height: 100%;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s linear;
}
.file-item.is-done .file-item-fill { transform: scaleX(1); }
.is-uploading .file-item-remove { visibility: hidden; }

.upload-progress {
    margin-top: 16px;
    border: 1px solid rgba(28, 28, 28, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.upload-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.upload-progress-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(28, 28, 28, 0.08);
    overflow: hidden;
}
.upload-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--ink);
    transition: width 0.2s linear;
}
.upload-progress-meta {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--charcoal);
}
.upload-progress.is-paused .upload-progress-fill { background: var(--charcoal); }

.banner-retry {
    margin-left: 12px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Preloader progress: hairline only, no numbers */

.fl-preloader-progress {
    position: absolute;
    top: calc(50% + clamp(56px, 7vw, 84px));
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(51, 42, 32, 0.16);
    overflow: hidden;
}
.fl-preloader-progress-fill {
    display: block;
    height: 100%;
    background: rgba(51, 42, 32, 0.7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
