@font-face {
    font-family: "Sora";
    src: url("/avron-cdn/avron-brand/fonts/Sora-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sora";
    src: url("/avron-cdn/avron-brand/fonts/Sora-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sora";
    src: url("/avron-cdn/avron-brand/fonts/Sora-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    color-scheme: dark;
    --green: #4a9666;
    --green-bright: #65ba82;
    --amber: #d48b4f;
    --ink: #f4f7f5;
    --muted: rgba(239, 245, 241, .7);
    --line: rgba(255, 255, 255, .16);
    --line-strong: rgba(255, 255, 255, .3);
    --surface: rgba(7, 25, 19, .56);
    --surface-strong: rgba(4, 18, 14, .82);
    --page: #03100d;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--page);
}
body.avron-subpage {
    --subpage-hero-image: none;
    --subpage-hero-position: center center;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(0, 8, 7, .94), rgba(3, 37, 26, .82) 48%, rgba(7, 18, 15, .94)),
        url("/avron-cdn/avron-brand/subpages/overlay-bg.jpg") center / cover fixed,
        #03100d;
    font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    isolation: isolate;
}
body.avron-subpage[data-visual="event"] {
    --subpage-hero-image: url("/avron-cdn/avron-brand/subpages/avron-event-logistics.jpg");
    --subpage-hero-position: 50% center;
}
body.avron-subpage[data-visual="rack"] {
    --subpage-hero-image: url("/avron-cdn/avron-brand/subpages/avron-rack-service.jpg");
    --subpage-hero-position: 46% center;
}
body.avron-subpage::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(1, 10, 8, .86), rgba(2, 24, 17, .26) 52%, rgba(2, 12, 10, .74)),
        radial-gradient(circle at 76% 22%, rgba(74, 150, 102, .3), transparent 34%),
        radial-gradient(circle at 88% 76%, rgba(212, 139, 79, .13), transparent 28%),
        url("/avron-cdn/avron-brand/subpages/overlay-bg.jpg") center / cover no-repeat;
    opacity: .9;
}
body.avron-subpage::after {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .34)),
        radial-gradient(circle at 18% 72%, rgba(40, 118, 111, .12), transparent 24%);
}
body.avron-subpage a {
    color: inherit;
}
.wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}
.avron-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(2, 15, 11, .76);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.avron-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.avron-brand {
    flex: 0 0 auto;
}
.avron-brand img {
    display: block;
    width: 158px;
    height: auto;
}
.avron-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.avron-nav a,
.avron-mobile-nav__links a {
    position: relative;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .22s ease;
}
.avron-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--green-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s ease;
}
.avron-nav a:hover,
.avron-nav a:focus-visible,
.avron-nav a[aria-current="page"] {
    color: #fff;
}
.avron-nav a:hover::after,
.avron-nav a:focus-visible::after,
.avron-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid var(--green-bright);
    border-radius: 4px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.button::after {
    content: "↗";
    font-size: 14px;
}
.button:hover,
.button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #06110d;
    transform: translateY(-2px);
}
.button.secondary {
    border-color: var(--line-strong);
    background: transparent;
    color: #fff;
}
.nav-cta {
    min-height: 40px;
    padding: 0 15px;
    color: #fff !important;
}
.nav-cta::after {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    content: "↗" !important;
    transform: none !important;
}
.avron-mobile-nav {
    display: none;
    padding: 0;
    border: 0;
}
.avron-mobile-nav summary {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
}
.avron-mobile-nav summary::after {
    content: none;
}
.avron-mobile-nav summary::-webkit-details-marker {
    display: none;
}
.avron-mobile-nav summary span {
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    transition: transform .22s ease, opacity .22s ease;
}
.avron-mobile-nav[open] summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.avron-mobile-nav[open] summary span:nth-child(2) {
    opacity: 0;
}
.avron-mobile-nav[open] summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.avron-mobile-nav__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 15, 11, .98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .32);
}
.avron-mobile-nav__links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}
.avron-mobile-nav__links a:not(.button)::after {
    content: "›";
    font-size: 20px;
}
.avron-mobile-nav__links .button {
    margin-top: 18px;
    border-bottom: 1px solid var(--green-bright);
}
.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: 132px 0 96px;
    border-bottom: 1px solid var(--line);
    background: transparent !important;
    isolation: isolate;
    overflow: hidden;
}
.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(1, 10, 8, .92) 0%, rgba(1, 13, 10, .78) 38%, rgba(1, 12, 9, .26) 72%, rgba(1, 10, 8, .54) 100%),
        linear-gradient(180deg, rgba(1, 12, 9, .36), rgba(1, 12, 9, .08) 46%, rgba(1, 12, 9, .92) 100%),
        var(--subpage-hero-image);
    background-position: center, center, var(--subpage-hero-position);
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(.9) contrast(1.04);
    transform: scale(1.015);
}
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 36%, rgba(74, 150, 102, .13), transparent 32%),
        linear-gradient(180deg, transparent 62%, rgba(2, 16, 12, .36));
}
.hero .wrap {
    position: relative;
    z-index: 1;
}
.hero .wrap::before {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: -28px;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, var(--green-bright), transparent);
}
.eyebrow {
    margin: 0 0 20px;
    color: var(--green-bright);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
h1,
h2,
h3 {
    text-wrap: balance;
}
h1 {
    width: min(100%, 1060px);
    margin: 0;
    font-size: clamp(3.9rem, 6.4vw, 7.35rem);
    font-weight: 800;
    line-height: .94;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
}
.lead {
    max-width: 790px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.34rem;
    line-height: 1.6;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
main > section:not(.hero) {
    padding: 104px 0;
    border-bottom: 1px solid var(--line);
}
.section-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
    gap: 86px;
    align-items: start;
}
h2 {
    margin: 0;
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: break-word;
    hyphens: auto;
}
h3 {
    margin: 0 0 17px;
    font-size: 1.55rem;
    line-height: 1.16;
}
p {
    margin: 0 0 19px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}
.panel {
    padding: 0 0 0 28px;
    border: 0;
    border-left: 1px solid var(--green-bright);
    border-radius: 0;
    background: transparent;
}
.soft {
    background: rgba(1, 9, 7, .31);
}
.list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}
ul.clean {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.clean li {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    font-size: .92rem;
    font-weight: 600;
}
ul.clean li:last-child {
    border-bottom: 1px solid var(--line);
}
.process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px !important;
}
.step {
    min-height: 210px;
    padding: 25px 0 0;
    border: 0;
    border-top: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
}
.step span {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--green-bright);
    font-weight: 800;
}
.step p {
    font-size: .92rem;
    line-height: 1.65;
}
details {
    padding: 23px 0;
    border: 0;
    border-top: 1px solid var(--line);
}
details:last-child {
    border-bottom: 1px solid var(--line);
}
details summary {
    position: relative;
    padding-right: 36px;
    color: #fff;
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 700;
    list-style: none;
}
details summary::-webkit-details-marker {
    display: none;
}
details summary::after {
    position: absolute;
    top: -2px;
    right: 2px;
    content: "+";
    color: var(--green-bright);
    font-size: 22px;
    font-weight: 400;
}
details[open] summary::after {
    content: "−";
}
details p {
    max-width: 720px;
    margin-top: 17px;
}
.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.link-cloud a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.link-cloud a:hover,
.link-cloud a:focus-visible {
    border-color: var(--green-bright);
    background: rgba(74, 150, 102, .12);
    color: #fff;
}
.contact-form-section {
    position: relative;
    background:
        linear-gradient(110deg, rgba(1, 9, 7, .72), rgba(3, 29, 20, .42)),
        rgba(1, 9, 7, .34);
}
.contact-form-layout {
    grid-template-columns: minmax(0, .72fr) minmax(440px, 1.28fr);
}
.contact-form-intro {
    position: sticky;
    top: 132px;
}
.contact-form-intro > p:not(.eyebrow) {
    max-width: 490px;
    margin-top: 28px;
}
.contact-direct-links {
    display: grid;
    gap: 10px;
    margin-top: 32px;
}
.contact-direct-links a {
    width: fit-content;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    text-decoration-color: rgba(101, 186, 130, .72);
    text-underline-offset: 5px;
}
.contact-direct-links a:hover,
.contact-direct-links a:focus-visible {
    color: var(--green-bright);
}
.avron-contact-form {
    min-width: 0;
    padding-left: 32px;
    border-left: 1px solid var(--green-bright);
}
.contact-form-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-field {
    min-width: 0;
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}
.contact-field label {
    color: rgba(255, 255, 255, .78);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 3px;
    background: rgba(2, 17, 12, .66);
    color: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.45;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-field input,
.contact-field select {
    min-height: 54px;
    padding: 0 15px;
}
.contact-field textarea {
    min-height: 180px;
    padding: 14px 15px;
    resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, .4);
}
.contact-field select {
    color-scheme: dark;
}
.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color: rgba(255, 255, 255, .46);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--green-bright);
    outline: 0;
    background: rgba(4, 29, 20, .84);
    box-shadow: 0 0 0 3px rgba(101, 186, 130, .14);
}
.contact-field [aria-invalid="true"] {
    border-color: #e49c80;
}
.contact-consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 4px 0 26px;
    color: rgba(255, 255, 255, .68);
    cursor: pointer;
    font-size: .76rem;
    line-height: 1.65;
}
.contact-consent input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--green);
}
.contact-consent a {
    color: #fff;
    text-underline-offset: 3px;
}
.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}
.contact-submit {
    min-width: min(100%, 280px);
    cursor: pointer;
}
.contact-submit[disabled] {
    cursor: wait;
    opacity: .62;
    transform: none;
}
.contact-form-status {
    min-height: 28px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
    line-height: 1.55;
}
.contact-form-status.is-success {
    color: #88d5a3;
}
.contact-form-status.is-error {
    color: #f0ad91;
}
.footer {
    padding: 76px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: rgba(1, 8, 6, .82);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr .72fr;
    gap: 48px;
}
.footer__brand img {
    width: 170px;
    height: auto;
}
.footer__brand p {
    max-width: 340px;
    margin-top: 22px;
}
.footer__location p {
    margin-bottom: 10px;
    font-size: .88rem;
    line-height: 1.7;
}
.footer__location .eyebrow,
.footer__links .eyebrow {
    color: var(--green-bright);
    font-size: .68rem;
}
.footer__location a,
.footer__links a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .74);
    font-size: .8rem;
    text-decoration: none;
}
.footer__location a:hover,
.footer__links a:hover {
    color: #fff;
}
.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, .54);
    font-size: .7rem;
    text-transform: uppercase;
}
.footer__legal a {
    text-decoration: none;
}
.directory-hero {
    min-height: 62vh;
}
.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 110px;
}
.seo-card a {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(7, 29, 21, .68), rgba(4, 14, 11, .42));
    text-decoration: none;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.seo-card a:hover,
.seo-card a:focus-visible {
    border-color: var(--green-bright);
    background: linear-gradient(145deg, rgba(16, 52, 36, .78), rgba(4, 14, 11, .5));
    transform: translateY(-4px);
}
.seo-card__number {
    margin-bottom: auto;
    color: var(--green-bright);
    font-size: .72rem;
    font-weight: 800;
}
.seo-card h2 {
    margin: 44px 0 16px;
    font-size: 1.85rem;
    line-height: 1.08;
}
.seo-card p {
    margin-bottom: 24px;
    font-size: .9rem;
    line-height: 1.65;
}
.seo-card__action {
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.seo-card__action::after {
    margin-left: 8px;
    content: "↗";
}
html.js .avron-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s cubic-bezier(.22, .75, .18, 1), transform .75s cubic-bezier(.22, .75, .18, 1);
}
html.js .avron-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 4px;
}
@media (max-width: 1080px) {
    .avron-nav {
        display: none;
    }
    .avron-mobile-nav {
        display: block;
    }
    .section-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    body.avron-subpage {
        background-attachment: scroll;
    }
    body.avron-subpage[data-visual="event"] {
        --subpage-hero-position: 54% center;
    }
    body.avron-subpage[data-visual="rack"] {
        --subpage-hero-position: 49% center;
    }
    .wrap {
        width: min(100% - 36px, 1180px);
    }
    .avron-header__inner {
        min-height: 72px;
    }
    .avron-brand img {
        width: 138px;
    }
    .hero {
        min-height: 72vh;
        padding: 98px 0 66px;
    }
    .hero .wrap::before {
        display: none;
    }
    h1 {
        font-size: clamp(2.45rem, 10.5vw, 2.75rem);
        line-height: .98;
    }
    .lead {
        margin-top: 23px;
        font-size: 1.02rem;
        line-height: 1.62;
    }
    .cta-row {
        display: grid;
    }
    .cta-row .button {
        width: 100%;
    }
    main > section:not(.hero) {
        padding: 72px 0;
    }
    h2 {
        font-size: clamp(2.15rem, 9vw, 2.55rem);
    }
    h3 {
        font-size: 1.28rem;
    }
    p {
        font-size: .94rem;
        line-height: 1.7;
    }
    .panel {
        padding-left: 18px;
    }
    .contact-form-layout {
        gap: 46px;
    }
    .contact-form-intro {
        position: static;
    }
    .avron-contact-form {
        padding-left: 18px;
    }
    .contact-form-two {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-submit {
        width: 100%;
    }
    .list-grid,
    .process,
    .directory-grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .process {
        gap: 34px;
    }
    .step {
        min-height: auto;
    }
    .directory-grid {
        gap: 12px;
        padding-bottom: 72px;
    }
    .seo-card a {
        min-height: 240px;
        padding: 24px;
    }
    .seo-card h2 {
        margin-top: 34px;
        font-size: 1.55rem;
    }
    .footer {
        padding-top: 60px;
    }
    .footer__grid {
        gap: 34px;
    }
    .footer__legal {
        gap: 16px;
        margin-top: 40px;
    }
}
@media (max-width: 390px) {
    h1 {
        font-size: 2.35rem;
    }
    h2 {
        font-size: 2.2rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html.js .avron-reveal {
        opacity: 1;
        transform: none;
    }
}
