/*
 * Lord of Bugs, Standalone Pages Stylesheet
 * Used by: thank-you, subscription-confirmed, 404
 * Shares design tokens with main style.css
 *
 * @package LordOfBugs
 * @since   3.0.0
 */

/* ═══════════════════════════════════════════
   DESIGN TOKENS (mirror of style.css :root)
═══════════════════════════════════════════ */
:root {
    --bg: #faf9f6;
    --bg2: #f2efe8;
    --bg3: #e8e4da;
    --ink: #0f0e0c;
    --ink2: #2a2620;
    --gray: #6e6a64;
    --mist: #a09890;
    --copper: #9a5f1e;
    --copper-lt: #e8b680;
    --copper-bg: rgba(154, 95, 30, 0.08);
    --rust: #7a3010;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.09);
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --t-fast: 0.2s ease;
    --t-base: 0.3s ease;
    --t-slow: 0.5s ease;
}

/* ═══════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: var(--bg);
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* ═══════════════════════════════════════════
   GP NUCLEAR RESET (excludes body.lob-page)
═══════════════════════════════════════════ */
body:not(.lob-page) #page,
body:not(.lob-page) .site,
body:not(.lob-page) .site-inner,
body:not(.lob-page) .inside-site-inner,
body:not(.lob-page) .grid-container,
body:not(.lob-page) .grid-parent,
body:not(.lob-page) #content,
body:not(.lob-page) .site-content,
body:not(.lob-page) .content-area,
body:not(.lob-page) #primary,
body:not(.lob-page) .site-main,
body:not(.lob-page) .inside-article,
body:not(.lob-page) article.page,
body:not(.lob-page) .entry-content,
body:not(.lob-page) .entry-header,
body:not(.lob-page) .entry-footer,
body:not(.lob-page) #secondary,
body:not(.lob-page) .widget-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    position: static !important;
    z-index: auto !important;
    overflow: visible !important;
    transform: none !important;
    isolation: auto !important;
    grid-template-columns: unset !important;
    float: none !important;
}

body:not(.lob-page) .site-header,
body:not(.lob-page) .site-footer,
body:not(.lob-page) .main-navigation,
body:not(.lob-page) .nav-primary,
body:not(.lob-page) .mobile-menu-control-wrap,
body:not(.lob-page) .generate-back-to-top,
.lob-page .entry-meta,
.lob-page .post-navigation,
.lob-page .comments-area,
.lob-page .paging-navigation {
    display: none !important;
}

/* ═══════════════════════════════════════════
   PAGE LAYOUT
═══════════════════════════════════════════ */
.lob-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.lob-page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 6% 2rem;
}

@media (min-width: 768px) {
    .lob-page-body {
        padding: 3rem 6% 3rem;
    }
}

/* ═══════════════════════════════════════════
   LOGO / HEADER BAR
═══════════════════════════════════════════ */
.lob-page-header {
    padding: 1.2rem 6%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lob-page-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--t-fast);
}

.lob-page-logo span {
    font-weight: 300;
    opacity: 0.5;
}

.lob-page-logo:hover {
    color: var(--copper);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.lob-headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.lob-headline em {
    color: var(--copper);
    font-style: italic;
}

.lob-subtext {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.lob-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 400;
    margin-bottom: 0.8rem;
    display: block;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-copper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2.4rem;
    background: var(--copper);
    color: var(--bg);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--sans);
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
    position: relative;
    overflow: hidden;
}

.btn-copper:hover {
    background: var(--rust);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2.4rem;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--sans);
    border: 1.5px solid var(--ink);
    cursor: pointer;
    transition: all var(--t-fast);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
}

.lob-btn-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   STEP CARDS (Thank-you page)
═══════════════════════════════════════════ */
.lob-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 860px;
    margin: 2.5rem auto;
    width: 100%;
}

@media (max-width: 700px) {
    .lob-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.lob-step-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--t-base), box-shadow var(--t-base);
    /* Animation */
    opacity: 0;
    transform: translateY(24px);
    animation: lobFadeUp 0.6s ease forwards;
}

.lob-step-card:nth-child(1) {
    animation-delay: 0.2s;
}

.lob-step-card:nth-child(2) {
    animation-delay: 0.4s;
}

.lob-step-card:nth-child(3) {
    animation-delay: 0.6s;
}

.lob-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.lob-step-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.lob-step-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--copper);
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    opacity: 0.9;
}

.lob-step-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.lob-step-desc {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CHECKMARK ANIMATION (Thank-you)
═══════════════════════════════════════════ */
.lob-checkmark-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.lob-checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2.5px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lobScaleIn 0.5s ease forwards;
}

.lob-checkmark-svg {
    width: 36px;
    height: 36px;
    stroke: var(--copper);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lob-checkmark-path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: lobCheckDraw 0.6s 0.4s ease forwards;
}

/* ═══════════════════════════════════════════
   CONFETTI CANVAS (Confirmed page)
═══════════════════════════════════════════ */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* ═══════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════ */
.lob-404-number {
    font-family: var(--serif);
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 300;
    font-style: italic;
    color: var(--bg3);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.lob-404-number::after {
    content: '🐜';
    position: absolute;
    font-size: 0.2em;
    font-style: normal;
    bottom: 15%;
    right: 10%;
    animation: lobWalkAnt 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   CONTENT PAGE LAYOUT (Privacy, Legal, etc.)
═══════════════════════════════════════════ */
.lob-content-main {
    flex: 1;
    width: 100%;
    padding: 2rem 6% 4rem;
    background: var(--bg);
}

.lob-content-container {
    max-width: 800px;
    margin: 0 auto;
}

body.lob-page .lob-content-article {
    background: var(--white);
    padding: 3rem 4rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    body.lob-page .lob-content-article {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    body.lob-page .lob-content-article {
        padding: 2rem 1.5rem;
    }
}

/* Content Header */
body.lob-page .lob-content-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

body.lob-page .lob-content-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

body.lob-page .lob-content-meta {
    font-size: 0.75rem;
    color: var(--mist);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* Content Body (WordPress content) */
body.lob-page .lob-content-body {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink2);
}

/* Ensure WordPress .entry-content doesn't add padding */
body.lob-page .entry-content {
    padding: 0;
    margin: 0;
}

.lob-content-body h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lob-content-body h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.lob-content-body h4 {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.lob-content-body p {
    margin-bottom: 1.2rem;
}

.lob-content-body a {
    color: var(--copper);
    text-decoration: underline;
    text-decoration-color: rgba(154, 95, 30, 0.3);
    text-underline-offset: 2px;
    transition: all var(--t-fast);
}

.lob-content-body a:hover {
    color: var(--rust);
    text-decoration-color: var(--rust);
}

.lob-content-body ul,
.lob-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.8rem;
}

.lob-content-body li {
    margin-bottom: 0.6rem;
}

.lob-content-body strong {
    font-weight: 600;
    color: var(--ink);
}

.lob-content-body em {
    font-style: italic;
    color: var(--copper);
}

.lob-content-body blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.8rem;
    border-left: 3px solid var(--copper);
    background: var(--copper-bg);
    font-style: italic;
    color: var(--gray);
}

.lob-content-body code {
    font-family: 'Courier New', monospace;
    font-size: 0.88em;
    background: var(--bg3);
    padding: 0.2em 0.5em;
    border-radius: 3px;
    color: var(--ink);
}

.lob-content-body pre {
    background: var(--bg3);
    padding: 1.2rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.lob-content-body pre code {
    background: none;
    padding: 0;
}

.lob-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.lob-content-body th,
.lob-content-body td {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.lob-content-body th {
    background: var(--bg2);
    font-weight: 600;
    color: var(--ink);
}

.lob-content-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2.5rem 0;
}

/* ═══════════════════════════════════════════
   FULL-WIDTH CONTENT (no padding, no border)
═══════════════════════════════════════════ */
.lob-fullwidth-main {
    flex: 1;
    width: 100%;
    background: var(--bg);
}

.lob-fullwidth-container {
    width: 100%;
    max-width: 100%;
}

.lob-fullwidth-article {
    width: 100%;
    background: transparent;
}

.lob-fullwidth-body {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink2);
}

.lob-fullwidth-body h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lob-fullwidth-body h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.lob-fullwidth-body p {
    margin-bottom: 1.2rem;
}

.lob-fullwidth-body a {
    color: var(--copper);
    text-decoration: underline;
    text-decoration-color: rgba(154, 95, 30, 0.3);
    text-underline-offset: 2px;
    transition: all var(--t-fast);
}

.lob-fullwidth-body a:hover {
    color: var(--rust);
    text-decoration-color: var(--rust);
}

/* Fullwidth article styling */
body.lob-page .lob-fullwidth-article {
    padding: 0;
    margin: 0;
}

body.lob-page .lob-fullwidth-article .entry-content {
    padding: 0;
    margin: 0;
}

/* ═══════════════════════════════════════════
   MAIN NAV (for content pages with full menu)
═══════════════════════════════════════════ */
.lob-main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.lob-main-nav .logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.03em;
    line-height: 1.1;
    z-index: 1002;
}

.lob-main-nav .logo span {
    color: var(--copper);
}

.lob-main-nav .logo-sub {
    display: block;
    font-family: var(--sans);
    font-size: 0.56rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 0.15rem;
}

.lob-main-nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.lob-main-nav .nav-links a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--t-fast);
}

.lob-main-nav .nav-links a:hover {
    color: var(--copper);
}

.lob-main-nav .nav-cta {
    padding: 0.5rem 1.3rem;
    border: 1px solid var(--copper);
    color: var(--copper);
    transition: background var(--t-fast), color var(--t-fast);
}

.lob-main-nav .nav-cta:hover {
    background: var(--copper);
    color: #fff;
}

.lob-main-nav .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1003;
    background: transparent;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.lob-main-nav .hamburger .bar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}

.lob-main-nav .hamburger .bar span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.28s ease, opacity 0.28s ease;
    border-radius: 2px;
}

.lob-main-nav .hamburger.open .bar span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lob-main-nav .hamburger.open .bar span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.lob-main-nav .hamburger.open .bar span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .lob-main-nav .hamburger {
        display: flex;
    }

    .lob-main-nav .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        visibility: hidden;
    }

    .lob-main-nav .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .lob-main-nav .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}

/* ═══════════════════════════════════════════
   PAGE FOOTER
═══════════════════════════════════════════ */
.lob-page-footer {
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 1.5rem 6%;
    background: var(--bg);
}

.lob-page-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    flex-direction: column;
    text-align: center;
}

.lob-footer-copy {
    font-size: 0.7rem;
    color: var(--mist);
    font-weight: 300;
    letter-spacing: 0.05em;
    order: 2;
}

.lob-footer-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
    margin: 0;
    padding: 0;
}

.lob-footer-links a {
    font-size: 0.7rem;
    color: var(--mist);
    text-decoration: none;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color var(--t-fast);
}

.lob-footer-links a:hover {
    color: var(--copper);
}

.lob-footer-socials {
    display: flex;
    gap: 0.6rem;
}

.lob-footer-socials a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
    text-decoration: none;
}

.lob-footer-socials a:hover {
    border-color: var(--copper);
    transform: scale(1.15);
    background: var(--copper-bg);
}

.lob-footer-socials img {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════
   SOCIAL LINKS ROW (in-page)
═══════════════════════════════════════════ */
.lob-social-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 2rem 0;
}

.lob-social-row a {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
    text-decoration: none;
}

.lob-social-row a:hover {
    border-color: var(--copper);
    transform: scale(1.15);
    background: var(--copper-bg);
}

.lob-social-row img {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.lob-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    margin: 1.5rem auto;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes lobFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lobScaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lobCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes lobWalkAnt {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(8px) rotate(5deg);
    }

    50% {
        transform: translateX(0) rotate(-3deg);
    }

    75% {
        transform: translateX(-8px) rotate(5deg);
    }
}

@keyframes lobPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ═══════════════════════════════════════════
   TEMPLATE SPECIFICITY (proper CSS cascade)
   No !important needed - GP reset excludes .lob-page
═══════════════════════════════════════════ */

/* Reset WordPress default article classes */
body.lob-page article {
    padding: 0;
    margin: 0;
}

/* Content template padding */
body.lob-page article.lob-content-article {
    padding: 3rem 4rem;
}

@media (max-width: 768px) {
    body.lob-page article.lob-content-article {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    body.lob-page article.lob-content-article {
        padding: 2rem 1.5rem;
    }
}

/* Reset inner WordPress elements */
body.lob-page .entry-header,
body.lob-page .entry-footer {
    padding: 0;
    margin: 0;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}