:root {
    --hfa-red: #e31b36;
    --hfa-red-dark: #8e0013;
    --hfa-blue: #1689ff;
    --hfa-blue-dark: #063d86;
    --hfa-gold: #ffbd25;
    --hfa-ink: #02070c;
    --hfa-panel: rgba(3, 12, 21, .94);
    --hfa-border: rgba(61, 130, 191, .44);
    --hfa-text: #f5f2eb;
    --hfa-muted: #aeb8c4;
    --hfa-display: "Barlow Condensed", Impact, sans-serif;
    --hfa-body: Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--hfa-text);
    font-family: var(--hfa-body);
    background-color: #02070d;
    background-image: linear-gradient(rgba(1, 6, 12, .22), rgba(1, 6, 12, .22)), var(--hfa-background);
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 48% 20%, rgba(4, 19, 35, .18), rgba(0, 4, 9, .62) 78%);
}
body.hfa-modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hfa-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(1, 6, 11, .96);
    border-bottom: 1px solid rgba(58, 124, 184, .42);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5);
    backdrop-filter: blur(12px);
}
.hfa-site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, var(--hfa-red), transparent 32%, transparent 68%, var(--hfa-blue));
}
.hfa-header-inner {
    width: min(100% - 32px, 1580px);
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}
.hfa-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 310px;
    text-decoration: none;
    padding-right: 26px;
    border-right: 1px solid rgba(57, 128, 189, .34);
}
.hfa-brand-logo,
.hfa-brand-fallback {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    object-fit: contain;
}
.hfa-brand-fallback {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle, #b50921, #460009 64%);
    border: 3px solid #1875bd;
    font: 900 25px/1 var(--hfa-display);
    box-shadow: 0 0 18px rgba(21, 137, 255, .24);
}
.hfa-brand-copy { display: grid; gap: 4px; }
.hfa-brand-copy strong {
    font: 900 31px/.9 var(--hfa-display);
    letter-spacing: .035em;
    text-transform: uppercase;
}
.hfa-brand-copy small {
    color: var(--hfa-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}
.hfa-primary-nav { min-width: 0; }
.hfa-nav-list,
.hfa-nav-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.hfa-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
}
.hfa-nav-list li { position: relative; }
.hfa-nav-list > li > a {
    display: flex;
    align-items: center;
    min-height: 82px;
    color: #b6bec8;
    text-decoration: none;
    font: 800 16px/1 var(--hfa-display);
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: color .2s ease;
}
.hfa-nav-list > li > a:hover,
.hfa-nav-list > li.current-menu-item > a,
.hfa-nav-list > li.current-menu-ancestor > a,
.hfa-nav-list > li > a[href*="gallery"] { color: var(--hfa-red); }
.hfa-nav-list > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--hfa-red);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.hfa-nav-list > li > a:hover::after,
.hfa-nav-list > li.current-menu-item > a::after,
.hfa-nav-list > li > a[href*="gallery"]::after { transform: scaleX(1); }
.hfa-nav-list .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 210px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    background: rgba(2, 9, 16, .98);
    border: 1px solid rgba(58, 126, 190, .4);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .54);
    transition: .2s ease;
}
.hfa-nav-list li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.hfa-nav-list .sub-menu a {
    display: block;
    padding: 11px 13px;
    color: #c9d0d8;
    text-decoration: none;
    font: 700 15px/1.1 var(--hfa-display);
    text-transform: uppercase;
}
.hfa-nav-list .sub-menu a:hover { color: #fff; background: rgba(226, 27, 54, .17); }
.hfa-search-toggle {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(180deg, #a90019, #64000e);
    border: 1px solid #e3283f;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .36);
}
.hfa-search-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.hfa-search-panel {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(2, 8, 14, .98);
}
.hfa-search-panel form { width: min(100%, 720px); margin: 0 auto; display: flex; }
.hfa-search-panel input {
    flex: 1;
    min-width: 0;
    padding: 13px 15px;
    color: #fff;
    background: #06111d;
    border: 1px solid rgba(66, 138, 199, .44);
    outline: none;
}
.hfa-search-panel button {
    padding: 0 22px;
    color: #fff;
    background: var(--hfa-red-dark);
    border: 1px solid var(--hfa-red);
    font: 800 17px/1 var(--hfa-display);
    text-transform: uppercase;
    cursor: pointer;
}
.hfa-menu-toggle { display: none; }

.hfa-shell {
    width: min(100% - 36px, 1580px);
    margin: 0 auto;
    padding: 24px 0 48px;
}
.hfa-notice {
    margin-bottom: 16px;
    padding: 14px 18px;
    border: 1px solid;
    background: rgba(2, 10, 18, .95);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0,0,0,.4);
}
.hfa-notice-success { border-color: rgba(42, 211, 125, .46); color: #bdfbd8; }
.hfa-notice-error { border-color: rgba(226, 27, 54, .6); color: #ffc2ca; }

.hfa-hero {
    position: relative;
    min-height: 410px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 18px 28px 22px;
    background:
        radial-gradient(circle at 7% 70%, rgba(226, 27, 54, .18), transparent 34%),
        radial-gradient(circle at 90% 45%, rgba(22, 137, 255, .17), transparent 35%),
        linear-gradient(100deg, rgba(4, 10, 17, .98), rgba(3, 11, 20, .86));
    border: 1px solid rgba(57, 126, 188, .4);
    box-shadow: 0 20px 44px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.018);
}
.hfa-hero::before,
.hfa-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hfa-hero::before {
    opacity: .18;
    background-image: var(--hfa-background);
    background-size: cover;
    mix-blend-mode: screen;
}
.hfa-hero::after {
    background: linear-gradient(90deg, rgba(226,27,54,.5), transparent 25%, transparent 75%, rgba(22,137,255,.5));
    height: 2px;
    top: auto;
    bottom: 0;
}
.hfa-hero-copy,
.hfa-featured-stage { position: relative; z-index: 2; }
.hfa-hero-copy { padding-left: 70px; }
.hfa-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    color: #42a1ff;
    font: 800 18px/1 var(--hfa-display);
    letter-spacing: .07em;
    text-transform: uppercase;
}
.hfa-eyebrow span { width: 36px; height: 2px; background: #42a1ff; }
.hfa-hero h1 {
    margin: 0;
    font: 900 clamp(75px, 7.5vw, 132px)/.72 var(--hfa-display);
    letter-spacing: .015em;
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0,0,0,.75);
}
.hfa-hero h1 span,
.hfa-hero h1 strong { display: block; }
.hfa-hero h1 span { color: #f0eee8; }
.hfa-hero h1 strong { color: var(--hfa-red); }
.hfa-hero-tagline {
    margin: 17px 0 8px;
    color: #e9e6df;
    font: 800 clamp(20px, 1.8vw, 28px)/1 var(--hfa-display);
    letter-spacing: .035em;
    text-transform: uppercase;
}
.hfa-hero-description {
    max-width: 545px;
    margin: 0 0 20px;
    color: #d6dbe1;
    font-size: 16px;
    line-height: 1.52;
}
.hfa-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hfa-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    color: #fff;
    text-decoration: none;
    border: 1px solid;
    cursor: pointer;
    font: 800 20px/1 var(--hfa-display);
    letter-spacing: .03em;
    text-transform: uppercase;
    box-shadow: 0 12px 22px rgba(0,0,0,.4), inset 0 0 18px rgba(255,255,255,.04);
    transition: transform .2s ease, filter .2s ease;
}
.hfa-button:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.13); }
.hfa-button svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hfa-button-red { background: linear-gradient(180deg, #d81b34, #850012); border-color: #ff3e55; }
.hfa-button-blue { background: linear-gradient(180deg, #176fd1, #07356e); border-color: #3d98ff; }

.hfa-featured-stage {
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 55px 15px 20px;
}
.hfa-featured-card {
    position: absolute;
    overflow: visible;
    margin: 0;
    background: #030a11;
    box-shadow: 0 18px 42px rgba(0,0,0,.66);
}
.hfa-featured-card a { display: block; height: 100%; overflow: hidden; }
.hfa-featured-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hfa-featured-primary {
    width: min(57%, 520px);
    height: 330px;
    left: 8%;
    top: 8px;
    padding: 10px;
    border: 2px solid #ff3b51;
    box-shadow: 0 0 0 7px rgba(0,0,0,.55), 0 0 28px rgba(226,27,54,.54), 0 22px 42px rgba(0,0,0,.66);
    transform: rotate(-1deg);
}
.hfa-featured-secondary {
    width: min(38%, 340px);
    height: 275px;
    right: 5%;
    top: 70px;
    padding: 9px;
    border: 2px solid #4eacff;
    box-shadow: 0 0 0 6px rgba(0,0,0,.55), 0 0 28px rgba(22,137,255,.5), 0 22px 42px rgba(0,0,0,.66);
    transform: rotate(3deg);
}
.hfa-featured-primary img { object-position: center 35%; }
.hfa-featured-secondary img { object-position: center; }
.hfa-featured-meta {
    position: absolute;
    left: 50%;
    bottom: -58px;
    width: 78%;
    transform: translateX(-50%);
    padding: 8px 12px;
    text-align: center;
    background: rgba(3, 10, 18, .97);
    border: 1px solid rgba(54, 122, 181, .4);
    box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.hfa-featured-meta strong,
.hfa-featured-meta span { display: block; text-transform: uppercase; }
.hfa-featured-meta strong { color: #f2eee6; font: 800 20px/1 var(--hfa-display); }
.hfa-featured-meta span { margin-top: 5px; color: var(--hfa-blue); font: 700 14px/1 var(--hfa-display); letter-spacing: .04em; }
.hfa-featured-primary .hfa-featured-meta span { color: var(--hfa-red); }
.hfa-featured-label {
    position: absolute;
    left: 50%;
    bottom: -13px;
    z-index: 4;
    transform: translateX(-50%) rotate(-2deg);
    padding: 6px 18px;
    color: #13110d;
    background: #d6c5a1;
    border: 1px solid #8d7651;
    font: 900 18px/1 var(--hfa-display);
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(0,0,0,.38);
}
.hfa-tape {
    position: absolute;
    z-index: 5;
    width: 82px;
    height: 25px;
    background: rgba(196, 171, 127, .78);
    box-shadow: 0 4px 10px rgba(0,0,0,.34);
}
.hfa-tape-primary { left: 18px; top: -15px; transform: rotate(-10deg); }
.hfa-tape-secondary { right: 26%; top: -16px; transform: rotate(8deg); }
.hfa-featured-scribble {
    position: absolute;
    right: -8px;
    top: 6px;
    color: #83c3ff;
    font: 400 21px/1.1 "Permanent Marker", cursive;
    text-transform: uppercase;
    transform: rotate(-7deg);
    text-shadow: 0 0 16px rgba(22,137,255,.45);
}
.hfa-featured-empty {
    display: grid;
    place-items: center;
    color: #dfe5eb;
    background: repeating-linear-gradient(135deg, #06111c 0 12px, #071722 12px 24px);
    cursor: pointer;
}
.hfa-featured-empty span { font: 300 60px/1 Arial; color: var(--hfa-red); }
.hfa-featured-empty strong { font: 800 24px/1 var(--hfa-display); text-transform: uppercase; }

.hfa-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    margin: 16px 0 10px;
    padding: 13px 18px;
    background: rgba(2, 10, 18, .96);
    border: 1px solid rgba(54, 123, 184, .42);
    box-shadow: 0 15px 30px rgba(0,0,0,.42);
}
.hfa-stats article {
    min-width: 0;
    display: grid;
    grid-template-columns: 50px auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,.13);
}
.hfa-stats article:last-child { border-right: 0; }
.hfa-stat-icon { font: 900 38px/1 var(--hfa-display); text-align: center; }
.hfa-stat-red { color: var(--hfa-red); text-shadow: 0 0 15px rgba(226,27,54,.45); }
.hfa-stat-blue { color: var(--hfa-blue); text-shadow: 0 0 15px rgba(22,137,255,.45); }
.hfa-stats article > strong { font: 900 42px/.9 var(--hfa-display); }
.hfa-stats div { display: grid; gap: 3px; min-width: 0; }
.hfa-stats b { color: #d9dde2; font: 800 17px/1 var(--hfa-display); text-transform: uppercase; }
.hfa-stats small { color: #9da9b5; font-size: 11px; line-height: 1.2; }

.hfa-gallery-section {
    padding: 0 0 10px;
    background: rgba(2, 9, 16, .54);
}
.hfa-gallery-tools {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(64,130,190,.36);
}
.hfa-filter-tabs { display: flex; min-width: 0; overflow-x: auto; }
.hfa-filter-tabs button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 26px;
    color: #aeb7c0;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font: 800 16px/1 var(--hfa-display);
    letter-spacing: .025em;
    text-transform: uppercase;
}
.hfa-filter-tabs button:hover { color: #fff; }
.hfa-filter-tabs button.is-active { color: #fff; background: linear-gradient(180deg,#d91b34,#8a0012); border-color: #ff465b; }
.hfa-view-tools { display: flex; align-items: center; gap: 10px; }
.hfa-view-tools select {
    min-height: 40px;
    min-width: 210px;
    padding: 0 14px;
    color: #dce2e8;
    background: #06111b;
    border: 1px solid rgba(57,126,187,.45);
    font: 700 14px/1 var(--hfa-display);
    text-transform: uppercase;
}
.hfa-view-button {
    width: 42px;
    height: 42px;
    color: #cbd2d9;
    background: #06111b;
    border: 1px solid rgba(57,126,187,.45);
    cursor: pointer;
    font-size: 22px;
}
.hfa-view-button.is-active { color: #fff; background: #a90018; border-color: #ff3d54; }

.hfa-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 14px;
    padding: 0 8px 8px;
}
.hfa-art-card,
.hfa-submit-card {
    position: relative;
    min-width: 0;
    min-height: 360px;
    overflow: hidden;
    margin: 0;
    background: linear-gradient(180deg, rgba(7,18,29,.98), rgba(2,8,14,.99));
    border: 1px solid rgba(51,121,184,.55);
    box-shadow: 0 16px 30px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.025);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hfa-art-card-red { border-color: rgba(226,27,54,.68); }
.hfa-art-card:hover { transform: translateY(-4px); box-shadow: 0 22px 38px rgba(0,0,0,.54), 0 0 20px rgba(22,137,255,.1); }
.hfa-art-card-red:hover { box-shadow: 0 22px 38px rgba(0,0,0,.54), 0 0 20px rgba(226,27,54,.16); }
.hfa-art-image { display: block; height: 235px; overflow: hidden; }
.hfa-art-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.hfa-art-card:hover .hfa-art-image img { transform: scale(1.035); }
.hfa-art-copy { padding: 15px 15px 14px; }
.hfa-art-copy h3 { margin: 0; color: #f2efe8; font: 800 24px/.95 var(--hfa-display); text-transform: uppercase; }
.hfa-art-copy p { margin: 7px 0 12px; color: var(--hfa-blue); font: 700 15px/1 var(--hfa-display); text-transform: uppercase; }
.hfa-art-card-red .hfa-art-copy p { color: var(--hfa-red); }
.hfa-art-copy span {
    display: inline-flex;
    padding: 5px 10px;
    color: #afb8c2;
    border: 1px solid rgba(54,126,189,.45);
    font: 700 12px/1 var(--hfa-display);
    text-transform: uppercase;
}
.hfa-card-badge {
    position: absolute;
    left: 8px;
    top: 9px;
    z-index: 3;
    padding: 6px 11px;
    color: #fff;
    font: 800 13px/1 var(--hfa-display);
    text-transform: uppercase;
    box-shadow: 0 7px 14px rgba(0,0,0,.4);
}
.hfa-badge-red { background: #b80922; }
.hfa-badge-blue { background: #106ec7; }
.hfa-submit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    color: #fff;
    border: 2px dashed rgba(226,27,54,.72);
    background: radial-gradient(circle, rgba(226,27,54,.12), transparent 50%), rgba(3,9,15,.96);
    cursor: pointer;
}
.hfa-submit-card::before { content:""; position:absolute; inset:8px; border:1px dashed rgba(226,27,54,.42); pointer-events:none; }
.hfa-submit-plus {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hfa-red);
    border: 2px solid var(--hfa-red);
    font: 300 48px/1 Arial;
    box-shadow: 0 0 22px rgba(226,27,54,.22);
}
.hfa-submit-card strong { font: 800 27px/.95 var(--hfa-display); text-align: center; text-transform: uppercase; }
.hfa-submit-card small { color: #b1bac4; line-height: 1.4; text-align: center; }
.hfa-submit-card b { margin-top: 5px; padding: 11px 20px; background: linear-gradient(180deg,#d91b34,#8a0012); border: 1px solid #ff4258; font: 800 17px/1 var(--hfa-display); text-transform: uppercase; }
.hfa-gallery-grid.is-list { grid-template-columns: 1fr; }
.hfa-gallery-grid.is-list .hfa-art-card { min-height: 190px; display: grid; grid-template-columns: 250px 1fr; }
.hfa-gallery-grid.is-list .hfa-art-image { height: 190px; }
.hfa-gallery-grid.is-list .hfa-art-copy { display: flex; flex-direction: column; justify-content: center; }
.hfa-gallery-grid.is-list .hfa-submit-card { min-height: 190px; }
.hfa-no-results { padding: 30px; color: #c6cdd5; text-align: center; font-weight: 800; }
.hfa-empty-gallery {
    width: 100%;
    min-height: 280px;
    display: grid;
    place-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(2,10,18,.95);
    border: 2px dashed rgba(226,27,54,.7);
    cursor: pointer;
}
.hfa-empty-gallery span { color: var(--hfa-red); font-size: 60px; }
.hfa-empty-gallery strong { font: 800 32px/1 var(--hfa-display); text-transform: uppercase; }
.hfa-empty-gallery small { color: #aeb7c0; }

.hfa-modal,
.hfa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 3, 7, .88);
    backdrop-filter: blur(6px);
}
.hfa-modal[hidden],
.hfa-lightbox[hidden] { display: none !important; }
.hfa-modal-panel {
    position: relative;
    width: min(100%, 920px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    background: linear-gradient(145deg, rgba(5,17,28,.99), rgba(4,9,15,.99));
    border: 1px solid rgba(57,126,187,.52);
    box-shadow: 0 30px 70px rgba(0,0,0,.72), 0 0 30px rgba(22,137,255,.12), 0 0 30px rgba(226,27,54,.12);
}
.hfa-modal-close,
.hfa-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #a90018;
    border: 1px solid #ff3c54;
    border-radius: 50%;
    cursor: pointer;
    font: 700 30px/1 Arial;
}
.hfa-modal-heading p { margin: 0 0 5px; color: var(--hfa-blue); font: 800 15px/1 var(--hfa-display); text-transform: uppercase; letter-spacing: .06em; }
.hfa-modal-heading h2 { margin: 0; color: #f2efe8; font: 900 54px/.9 var(--hfa-display); text-transform: uppercase; }
.hfa-modal-heading span { display: block; margin-top: 10px; color: #aeb8c3; }
.hfa-submit-form { display: grid; gap: 16px; margin-top: 24px; }
.hfa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hfa-submit-form label { display: grid; gap: 7px; color: #dbe0e5; font: 700 14px/1 var(--hfa-display); letter-spacing: .025em; text-transform: uppercase; }
.hfa-submit-form input,
.hfa-submit-form select,
.hfa-submit-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: #fff;
    background: #06111c;
    border: 1px solid rgba(57,126,187,.44);
    outline: none;
    font-family: var(--hfa-body);
    text-transform: none;
}
.hfa-submit-form input:focus,
.hfa-submit-form select:focus,
.hfa-submit-form textarea:focus { border-color: var(--hfa-blue); box-shadow: 0 0 0 3px rgba(22,137,255,.12); }
.hfa-submit-form textarea { min-height: 120px; resize: vertical; }
.hfa-submit-form label small { color: #8996a3; font-family: var(--hfa-body); font-weight: 500; text-transform: none; }
.hfa-permission { grid-template-columns: 24px 1fr !important; align-items: start; padding: 13px; border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.2); }
.hfa-permission input { width: 18px; height: 18px; min-height: 0; margin-top: 2px; accent-color: var(--hfa-red); }
.hfa-permission span { color: #b8c1cb; font-family: var(--hfa-body); font-size: 13px; line-height: 1.45; text-transform: none; }
.hfa-honeypot { position: absolute !important; left: -9999px !important; }
.hfa-submit-form-button { justify-self: start; }

.hfa-lightbox figure {
    margin: 0;
    max-width: min(94vw, 1380px);
    max-height: 90vh;
    padding: 14px;
    background: #040b12;
    border: 1px solid rgba(57,126,187,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.74);
}
.hfa-lightbox img { display: block; max-width: min(90vw, 1320px); max-height: calc(90vh - 70px); width: auto; height: auto; object-fit: contain; }
.hfa-lightbox figcaption { margin-top: 10px; color: #f0ede6; font: 800 22px/1 var(--hfa-display); text-transform: uppercase; }
.hfa-admin-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    padding: 11px 16px;
    color: #fff;
    text-decoration: none;
    background: #0c65b9;
    border: 1px solid #4ca7ff;
    font: 800 15px/1 var(--hfa-display);
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0,0,0,.45);
}

@media (max-width: 1320px) {
    .hfa-brand { min-width: 265px; }
    .hfa-brand-copy strong { font-size: 27px; }
    .hfa-nav-list { gap: 17px; }
    .hfa-nav-list > li > a { font-size: 14px; }
    .hfa-hero-copy { padding-left: 25px; }
    .hfa-gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .hfa-stats article { padding: 0 12px; }
}
@media (max-width: 1080px) {
    .hfa-header-inner { grid-template-columns: auto auto auto; }
    .hfa-menu-toggle {
        display: grid;
        gap: 5px;
        width: 44px;
        height: 44px;
        place-content: center;
        margin-left: auto;
        color: #fff;
        background: transparent;
        border: 1px solid rgba(57,126,187,.4);
        cursor: pointer;
    }
    .hfa-menu-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; background: currentColor; }
    .hfa-primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 16px 20px;
        background: rgba(1,7,12,.99);
        border-bottom: 1px solid rgba(57,126,187,.4);
    }
    .hfa-site-header.hfa-menu-open .hfa-primary-nav { display: block; }
    .hfa-nav-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
    .hfa-nav-list > li > a { min-height: 46px; padding: 0 10px; }
    .hfa-nav-list .sub-menu { position: static; display: none; transform: none; opacity: 1; visibility: visible; }
    .hfa-nav-list li:hover > .sub-menu { display: block; transform: none; }
    .hfa-hero { grid-template-columns: 1fr; padding-bottom: 76px; }
    .hfa-hero-copy { padding: 30px 40px 0; }
    .hfa-featured-stage { min-height: 380px; }
    .hfa-featured-primary { left: 15%; }
    .hfa-featured-secondary { right: 12%; }
    .hfa-stats { grid-template-columns: repeat(2,1fr); }
    .hfa-stats article:nth-child(2) { border-right: 0; }
    .hfa-stats article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
    .hfa-gallery-tools { flex-direction: column; gap: 8px; }
    .hfa-view-tools { justify-content: flex-end; }
    .hfa-gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
    body { background-attachment: scroll; }
    .hfa-header-inner { width: min(100% - 20px, 1580px); min-height: 70px; gap: 10px; }
    .hfa-brand { min-width: 0; border-right: 0; padding-right: 0; }
    .hfa-brand-logo, .hfa-brand-fallback { flex-basis: 49px; width: 49px; height: 49px; }
    .hfa-brand-copy strong { font-size: 23px; }
    .hfa-brand-copy small { display: none; }
    .hfa-search-toggle { width: 44px; height: 44px; }
    .hfa-nav-list { grid-template-columns: 1fr 1fr; }
    .hfa-shell { width: min(100% - 18px, 1580px); padding-top: 10px; }
    .hfa-hero { padding: 0 13px 60px; }
    .hfa-hero-copy { padding: 28px 5px 0; }
    .hfa-eyebrow { font-size: 15px; }
    .hfa-hero h1 { font-size: clamp(65px, 21vw, 94px); }
    .hfa-hero-description { font-size: 14px; }
    .hfa-hero-actions { display: grid; grid-template-columns: 1fr; }
    .hfa-button { width: 100%; }
    .hfa-featured-stage { min-height: 470px; padding: 0; }
    .hfa-featured-primary { width: 78%; height: 300px; left: 4%; top: 18px; }
    .hfa-featured-secondary { width: 57%; height: 240px; right: 4%; top: 210px; }
    .hfa-featured-scribble { display: none; }
    .hfa-stats { grid-template-columns: 1fr; padding: 0 14px; }
    .hfa-stats article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hfa-stats article:last-child { border-bottom: 0; }
    .hfa-filter-tabs button { padding: 0 18px; font-size: 14px; }
    .hfa-view-tools { display: grid; grid-template-columns: 1fr auto auto; }
    .hfa-view-tools select { width: 100%; min-width: 0; }
    .hfa-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; }
    .hfa-art-card, .hfa-submit-card { min-height: 310px; }
    .hfa-art-image { height: 190px; }
    .hfa-art-copy h3 { font-size: 21px; }
    .hfa-art-copy p { font-size: 13px; }
    .hfa-gallery-grid.is-list .hfa-art-card { grid-template-columns: 130px 1fr; min-height: 150px; }
    .hfa-gallery-grid.is-list .hfa-art-image { height: 150px; }
    .hfa-form-row { grid-template-columns: 1fr; }
    .hfa-modal { padding: 9px; }
    .hfa-modal-panel { max-height: calc(100vh - 18px); padding: 22px 16px; }
    .hfa-modal-heading h2 { font-size: 44px; }
}
@media (max-width: 480px) {
    .hfa-brand-copy strong { font-size: 20px; }
    .hfa-gallery-grid { grid-template-columns: 1fr; }
    .hfa-art-image { height: 240px; }
    .hfa-featured-primary { width: 84%; }
    .hfa-featured-secondary { width: 64%; }
}
