/* =========================================================
   VNESYS RULES
   Premium OLED / Gold Editorial Design
========================================================= */

:root {
    --black: #000000;
    --black-2: #050505;
    --black-3: #090909;
    --surface: #0d0d0f;
    --surface-2: #121214;
    --surface-3: #17171a;

    --gold: #d4af37;
    --gold-light: #f2d675;
    --gold-dark: #9f7d18;

    --gold-soft: rgba(212,175,55,.12);
    --gold-glow: rgba(212,175,55,.25);

    --white: #ffffff;
    --white-soft: rgba(255,255,255,.82);

    --gray: #99999f;
    --gray-dark: #626269;

    --border: rgba(255,255,255,.08);
    --border-gold: rgba(212,175,55,.30);

    --radius: 18px;
    --max-width: 1180px;

    --nav-height: 76px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: #000;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

::selection {
    background: var(--gold);
    color: #000;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo img {
    width: 130px;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1.2);
}

.loader-line {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,.12);
    margin-top: 28px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loading 1.4s ease forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}


/* =========================================================
   AMBIENT BACKGROUND
========================================================= */

.ambient {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: .08;
    z-index: -3;
}

.ambient-one {
    top: 10%;
    left: -250px;
    background: var(--gold);
}

.ambient-two {
    top: 55%;
    right: -280px;
    background: #8d6412;
}

.grid-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -4;
    opacity: .25;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}


/* =========================================================
   CURSOR
========================================================= */

.cursor,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99990;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow:
        0 0 12px var(--gold),
        0 0 25px rgba(212,175,55,.3);

    transition:
        width .2s ease,
        height .2s ease;
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212,175,55,.45);
    border-radius: 50%;

    transition:
        width .3s ease,
        height .3s ease,
        border-color .3s ease;
}

.cursor.hovered {
    width: 14px;
    height: 14px;
}

.cursor-ring.hovered {
    width: 55px;
    height: 55px;
    border-color: var(--gold);
}

@media (hover:none) {
    .cursor,
    .cursor-ring {
        display:none;
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);

    z-index: 5000;

    background: rgba(0,0,0,.48);
    border-bottom: 1px solid transparent;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.navbar.scrolled {
    background: rgba(5,5,5,.88);
    border-color: var(--border);
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
}

.navbar-inner {
    width: min(var(--max-width), calc(100% - 50px));
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 125px;
    max-height: 65px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.nav-links a {
    position: relative;

    padding: 9px 12px;

    color: rgba(255,255,255,.62);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .07em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links .nav-cta {
    margin-left: 7px;

    color: #000;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold),
        var(--gold-dark)
    );

    border-radius: 100px;

    padding: 10px 18px;

    box-shadow:
        0 5px 20px rgba(212,175,55,.15);
}

.nav-links .nav-cta:hover {
    color:#000;
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(212,175,55,.28);
}

.nav-links .nav-cta::after {
    display:none;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    width: 44px;
    height: 44px;

    display:none;

    align-items:center;
    justify-content:center;
    flex-direction:column;

    gap:5px;

    background:rgba(255,255,255,.04);
    border:1px solid var(--border);
    border-radius:12px;

    cursor:pointer;
}

.hamburger span {
    width:20px;
    height:1px;
    background:#fff;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.hamburger.open span:nth-child(1) {
    transform:translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity:0;
}

.hamburger.open span:nth-child(3) {
    transform:translateY(-6px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left:0;
    width:100%;

    max-height:0;
    overflow:hidden;

    background:rgba(3,3,3,.97);

    border-bottom:1px solid transparent;

    backdrop-filter:blur(25px);

    transition:
        max-height .5s cubic-bezier(.77,0,.18,1),
        border-color .3s;
}

.mobile-nav.open {
    max-height: calc(100vh - var(--nav-height));
    border-color:var(--border);
    overflow-y:auto;
}

.mobile-nav-inner {
    width:min(600px,100%);
    margin:auto;
    padding:25px;
}

.mobile-nav-label {
    color:var(--gold);
    font-size:10px;
    letter-spacing:.18em;
    margin-bottom:20px;
}

.mobile-nav a {
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 4px;

    border-bottom:1px solid var(--border);

    color:rgba(255,255,255,.72);

    text-decoration:none;

    font-family:"Plus Jakarta Sans";
    font-size:15px;
    font-weight:600;

    transition:color .25s;
}

.mobile-nav a:hover {
    color:var(--gold);
}

.mobile-nav .mobile-brand {
    color:#000;
    background:var(--gold);
    padding:15px 18px;
    border-radius:12px;
    margin-top:20px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position:relative;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:
        calc(var(--nav-height) + 90px)
        25px
        100px;

    overflow:hidden;

    background:
        radial-gradient(
            ellipse at 50% 20%,
            rgba(212,175,55,.11),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 50% 80%,
            rgba(255,255,255,.025),
            transparent 45%
        ),
        #000;
}

.hero::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,175,55,.025),
            transparent
        );

    pointer-events:none;
}

.hero-content {
    position:relative;
    z-index:3;

    max-width:1050px;

    text-align:center;
}

.hero-eyebrow {
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:8px 14px;

    border:1px solid rgba(212,175,55,.25);
    border-radius:100px;

    background:rgba(212,175,55,.055);

    color:var(--gold-light);

    font-size:10px;
    font-weight:700;

    letter-spacing:.16em;
    text-transform:uppercase;

    opacity:0;
    transform:translateY(25px);
}

.status-dot {
    width:6px;
    height:6px;

    border-radius:50%;
    background:var(--gold);

    box-shadow:
        0 0 8px var(--gold);

    animation:
        statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0%,100% {
        opacity:1;
        transform:scale(1);
    }

    50% {
        opacity:.4;
        transform:scale(.65);
    }
}

.eyebrow-year {
    padding-left:10px;
    border-left:1px solid rgba(255,255,255,.15);
    color:rgba(255,255,255,.45);
}

.hero h1 {
    margin-top:30px;

    font-family:"Syne", sans-serif;

    font-size:clamp(52px,8.5vw,125px);
    font-weight:800;

    line-height:.86;
    letter-spacing:-.065em;

    opacity:0;
    transform:translateY(45px);
}

.gold-text {
    color:var(--gold);

    text-shadow:
        0 0 40px rgba(212,175,55,.18);
}

.outline-text {
    color:transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.30);
}

.normal-text {
    color:#fff;
}

.hero-sub {
    max-width:650px;

    margin:35px auto 0;

    color:rgba(255,255,255,.54);

    font-size:16px;
    line-height:1.8;

    opacity:0;
    transform:translateY(30px);
}

.hero-meta {
    display:flex;
    justify-content:center;
    align-items:center;

    gap:25px;

    margin-top:45px;

    opacity:0;
    transform:translateY(20px);
}

.hero-meta div:not(.meta-line) {
    display:flex;
    flex-direction:column;
    gap:5px;
}

.hero-meta strong {
    font-family:"Syne";
    font-size:22px;
    color:var(--gold);
}

.hero-meta span {
    color:rgba(255,255,255,.38);

    font-size:9px;
    text-transform:uppercase;
    letter-spacing:.13em;
}

.meta-line {
    width:1px;
    height:30px;
    background:rgba(255,255,255,.12);
}


/* =========================================================
   HERO ORBITS
========================================================= */

.hero-orbit {
    position:absolute;

    border:1px solid rgba(212,175,55,.08);

    border-radius:50%;

    pointer-events:none;
}

.orbit-one {
    width:650px;
    height:650px;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%) rotate(20deg);

    animation:orbitRotate 30s linear infinite;
}

.orbit-two {
    width:900px;
    height:360px;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%) rotate(-25deg);

    animation:orbitRotateReverse 38s linear infinite;
}

@keyframes orbitRotate {
    to {
        transform:translate(-50%,-50%) rotate(380deg);
    }
}

@keyframes orbitRotateReverse {
    to {
        transform:translate(-50%,-50%) rotate(-385deg);
    }
}


/* =========================================================
   QUICK NAV
========================================================= */

.rules-nav {
    position:relative;
    z-index:5;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:8px;

    max-width:1000px;

    margin-top:70px;

    opacity:0;
    transform:translateY(30px);
}

.rules-nav a {
    display:flex;
    align-items:center;
    gap:9px;

    padding:9px 13px;

    border:1px solid var(--border);
    border-radius:100px;

    background:rgba(255,255,255,.025);

    color:rgba(255,255,255,.45);

    font-size:10px;
    font-weight:600;

    letter-spacing:.06em;
    text-transform:uppercase;

    text-decoration:none;

    backdrop-filter:blur(10px);

    transition:
        color .25s,
        border-color .25s,
        background .25s,
        transform .25s;
}

.rules-nav a:hover {
    color:#fff;

    border-color:rgba(212,175,55,.35);

    background:rgba(212,175,55,.06);

    transform:translateY(-3px);
}

.nav-number {
    color:var(--gold);
    font-family:"Plus Jakarta Sans";
    font-size:9px;
}

.hero-scroll {
    position:absolute;

    bottom:35px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.3);

    font-size:9px;

    letter-spacing:.15em;
    text-transform:uppercase;
}

.scroll-line {
    width:1px;
    height:35px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );

    animation:scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform:scaleY(0);
        transform-origin:top;
    }

    50% {
        transform:scaleY(1);
        transform-origin:top;
    }

    51% {
        transform-origin:bottom;
    }

    100% {
        transform:scaleY(0);
        transform-origin:bottom;
    }
}


/* =========================================================
   SECTIONS
========================================================= */

.rules-section {
    position:relative;

    padding:130px 25px;

    background:#000;

    border-top:1px solid rgba(255,255,255,.035);
}

.rules-section.alternate {
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212,175,55,.035),
            transparent 50%
        ),
        #050505;
}

.section-inner {
    width:min(var(--max-width),100%);
    margin:auto;
}

.section-header {
    max-width:800px;
    margin-bottom:55px;
}

.section-number {
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:22px;

    color:rgba(255,255,255,.35);

    font-size:10px;
    font-weight:700;

    letter-spacing:.17em;
}

.section-number span {
    display:flex;
    align-items:center;
    justify-content:center;

    width:31px;
    height:31px;

    border:1px solid rgba(212,175,55,.35);
    border-radius:50%;

    color:var(--gold);

    font-family:"Syne";
}

.section-number i {
    width:30px;
    height:1px;

    background:var(--gold);

    opacity:.5;
}

.section-title,
.section-header h2 {
    font-family:"Syne",sans-serif;
    font-size:clamp(40px,5vw,68px);
    line-height:.95;
    letter-spacing:-.045em;
}

.section-header h2 em {
    color:var(--gold);
    font-style:normal;

    text-shadow:
        0 0 30px rgba(212,175,55,.16);
}

.section-header p {
    max-width:610px;

    margin-top:22px;

    color:rgba(255,255,255,.43);

    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   ACCORDION
========================================================= */

.accordion-list {
    display:flex;
    flex-direction:column;

    gap:8px;
}

.acc-item {
    position:relative;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.075);
    border-radius:15px;

    background:
        linear-gradient(
            110deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.012)
        );

    opacity:0;
    transform:translateY(25px);

    transition:
        border-color .4s ease,
        background .4s ease,
        transform .4s ease;
}

.acc-item::before {
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:2px;
    height:100%;

    background:var(--gold);

    transform:scaleY(0);
    transform-origin:top;

    transition:transform .4s ease;
}

.acc-item:hover {
    border-color:rgba(255,255,255,.13);
}

.acc-item.open {
    border-color:rgba(212,175,55,.28);

    background:
        linear-gradient(
            120deg,
            rgba(212,175,55,.055),
            rgba(255,255,255,.015)
        );
}

.acc-item.open::before {
    transform:scaleY(1);
}

.acc-title {
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:25px 28px;

    background:none;
    border:0;

    color:#fff;

    text-align:left;

    cursor:pointer;
}

.acc-title > span:first-child {
    display:flex;
    align-items:center;
    gap:18px;

    font-family:"Plus Jakarta Sans";
    font-size:15px;
    font-weight:600;
}

.acc-title small {
    min-width:48px;

    color:var(--gold);

    font-size:9px;
    font-weight:700;

    letter-spacing:.12em;
}

.acc-icon {
    width:34px;
    height:34px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;

    color:rgba(255,255,255,.5);

    font-size:20px;
    font-weight:300;

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease,
        color .4s ease;
}

.acc-item.open .acc-icon {
    transform:rotate(45deg);

    color:#000;

    background:var(--gold);

    border-color:var(--gold);

    box-shadow:
        0 0 25px rgba(212,175,55,.2);
}

.acc-body {
    display:grid;
    grid-template-rows:0fr;

    transition:grid-template-rows .5s cubic-bezier(.77,0,.18,1);
}

.acc-item.open .acc-body {
    grid-template-rows:1fr;
}

.acc-body-inner {
    overflow:hidden;
}

.acc-body p {
    padding:
        0
        80px
        32px
        94px;

    color:rgba(255,255,255,.50);

    font-size:14px;
    line-height:1.95;

    white-space:pre-line;
}

.acc-item.open .acc-body p {
    animation:
        contentReveal .5s ease both;
}

@keyframes contentReveal {
    from {
        opacity:0;
        transform:translateY(-8px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }
}


/* =========================================================
   QUOTE
========================================================= */

.quote-banner {
    position:relative;

    padding:160px 25px;

    overflow:hidden;

    text-align:center;

    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,.10),
            transparent 42%
        ),
        #000;

    border-top:1px solid rgba(255,255,255,.05);
}

.quote-banner::before {
    content:"";

    position:absolute;

    width:650px;
    height:650px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border:1px solid rgba(212,175,55,.08);

    border-radius:50%;

    box-shadow:
        0 0 100px rgba(212,175,55,.04);

    pointer-events:none;
}

.quote-decoration {
    position:absolute;

    top:40px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    gap:7px;
}

.quote-decoration span {
    width:4px;
    height:4px;

    background:var(--gold);

    border-radius:50%;

    box-shadow:0 0 8px var(--gold);
}

.quote-content {
    position:relative;
    z-index:2;

    max-width:850px;
    margin:auto;
}

.quote-label {
    margin-bottom:28px;

    color:var(--gold);

    font-size:10px;
    font-weight:700;

    letter-spacing:.25em;
}

.quote-text {
    font-family:"Syne";
    font-size:clamp(25px,4vw,48px);
    font-weight:700;

    line-height:1.25;
    letter-spacing:-.035em;

    color:rgba(255,255,255,.85);

    opacity:0;
    transform:translateY(30px);
}

.quote-text em {
    color:var(--gold);
    font-style:normal;
}

.quote-button {
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:40px;

    padding:13px 20px;

    border:1px solid rgba(212,175,55,.35);
    border-radius:100px;

    color:var(--gold);

    font-size:11px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        background .3s,
        color .3s,
        transform .3s;
}

.quote-button:hover {
    color:#000;
    background:var(--gold);
    transform:translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background:#030303;

    border-top:1px solid rgba(255,255,255,.06);

    padding:70px 25px 30px;
}

.footer-top {
    width:min(var(--max-width),100%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.5fr;

    gap:80px;

    padding-bottom:65px;
}

.footer-logo img {
    width:135px;
    max-height:80px;
    object-fit:contain;
}

.footer-brand p {
    margin-top:18px;

    color:rgba(255,255,255,.3);

    font-size:13px;
    line-height:1.8;
}

.footer-links {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.footer-links div {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:11px;
}

.footer-links span {
    margin-bottom:7px;

    color:var(--gold);

    font-size:9px;
    font-weight:700;

    letter-spacing:.18em;
    text-transform:uppercase;
}

.footer-links a {
    color:rgba(255,255,255,.38);

    font-size:12px;

    text-decoration:none;

    transition:color .25s;
}

.footer-links a:hover {
    color:#fff;
}

.footer-bottom {
    width:min(var(--max-width),100%);
    margin:auto;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.06);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom p,
.footer-bottom a {
    color:rgba(255,255,255,.25);

    font-size:10px;

    text-decoration:none;
}

.footer-bottom a:hover {
    color:var(--gold);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

    .nav-links {
        gap:0;
    }

    .nav-links a {
        padding:8px 8px;
        font-size:9px;
    }

}

@media (max-width:900px) {

    .nav-links {
        display:none;
    }

    .hamburger {
        display:flex;
    }

    .hero {
        min-height:900px;
    }

    .hero h1 {
        font-size:clamp(48px,12vw,90px);
    }

    .footer-top {
        grid-template-columns:1fr;
        gap:50px;
    }

}

@media (max-width:700px) {

    :root {
        --nav-height:68px;
    }

    .navbar-inner {
        width:calc(100% - 30px);
    }

    .logo img {
        width:105px;
    }

    .hero {
        padding-left:18px;
        padding-right:18px;
    }

    .hero h1 {
        font-size:clamp(44px,13vw,70px);
        line-height:.92;
    }

    .hero-sub {
        font-size:14px;
        line-height:1.75;
    }

    .hero-meta {
        gap:13px;
    }

    .hero-meta strong {
        font-size:17px;
    }

    .hero-meta span {
        font-size:7px;
    }

    .rules-nav {
        margin-top:50px;
    }

    .rules-nav a {
        padding:8px 10px;
        font-size:8px;
    }

    .rules-section {
        padding:90px 18px;
    }

    .section-header {
        margin-bottom:38px;
    }

    .section-header h2 {
        font-size:clamp(38px,12vw,60px);
    }

    .section-header p {
        font-size:13px;
    }

    .acc-title {
        padding:20px 17px;
    }

    .acc-title > span:first-child {
        gap:10px;
        font-size:13px;
        line-height:1.45;
    }

    .acc-title small {
        min-width:35px;
        font-size:7px;
    }

    .acc-icon {
        width:30px;
        height:30px;
        font-size:18px;
    }

    .acc-body p {
        padding:
            0
            18px
            25px
            62px;

        font-size:13px;
        line-height:1.85;
    }

    .quote-banner {
        padding:110px 20px;
    }

    .quote-text {
        font-size:25px;
    }

    .footer-links {
        grid-template-columns:1fr 1fr;
        gap:35px 20px;
    }

    .footer-bottom {
        flex-direction:column;
        align-items:flex-start;
    }

}

@media (max-width:480px) {

    .hero-meta {
        display:none;
    }

    .hero {
        min-height:850px;
    }

    .hero-scroll {
        bottom:22px;
    }

    .section-number {
        font-size:8px;
    }

    .acc-title > span:first-child {
        display:block;
    }

    .acc-title small {
        display:block;
        margin-bottom:5px;
    }

    .acc-body p {
        padding-left:20px;
    }

    .footer-links {
        grid-template-columns:1fr;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior:auto !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }

}