@font-face {
    font-family: "Struggle";
    src: url("/fonts/struggle-regular.woff2") format("woff2"), url("/fonts/struggle-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Departure Mono";
    src: url("/fonts/DepartureMono-Regular.woff2") format("woff2"), url("/fonts/DepartureMono-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

table { border-collapse: collapse; width: 100%; }
td { vertical-align: top; }

header, nav, article, footer, address {
    display: block;
}

/***** END RESET *****/

::-moz-selection {
    background: #A20F12;
    color: #F3EDE6;
    text-shadow: none;
}
::selection {
    background: #A20F12;
    color: #F3EDE6;
    text-shadow: none;
}

/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*---UTILITY CLASSES--------------------------------*/

.flex-container {
    display: flex;
    align-items: center;
}

.center {
    text-align: center;
}

/* ============================================
Neloverse — Tokens
   ============================================ */

:root {
    --black: #0B0B0B;
    --off-white: #F3EDE6;
    --red: #A20F12;

    --font-display: "Struggle", "Georgia", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "Departure Mono", "SF Mono", "Courier New", monospace;

    --max-width: 1320px;
    --gutter: clamp(24px, 5vw, 80px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    background: var(--red);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

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

/* Reusable grain texture overlay — apply to any positioned element via .grain */
.grain {
    position: relative;
    isolation: isolate;
}

.grain::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
    background: var(--red);
    color: var(--off-white);
}

.btn-solid:hover {
    background: var(--off-white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(243, 237, 230, 0.35);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}
/* ============================================
Entrance gate
   ============================================ */

.gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.gate.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.gate__card {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 24px;
    padding: 32px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(11, 11, 11, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(243, 237, 230, 0.25);
}

.gate__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--off-white);
    margin: 0 0 8px;
}

.gate__label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(243, 237, 230, 0.75);
    margin: 0 0 24px;
}

.gate__password {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    background: rgba(243, 237, 230, 0.08);
    border: 1px solid rgba(243, 237, 230, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--off-white);
    text-align: left;
}

.gate__password::placeholder {
    (243, 237, 230, 0.4);
}

.gate__password:focus {
    outline: none;
    border-color: var(--off-white);
}

.gate__enter {
    font-family: var(--font-mono);
    display: block;
    width: 100%;
    background: var(--black);
    color: var(--off-white);
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gate__enter:hover {
    background: var(--off-white);
    color: var(--black);
}

.gate__enter:active {
    transform: scale(0.98);
}

.gate__error {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--off-white);
    margin: 16px 0 0;
    text-align: center;
}

.gate__error.is-hidden {
    display: none;
}

body.gate-locked {
    overflow: hidden;
}


/* ============================================
Hero
   ============================================ */

.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
}

@media (max-width: 1130px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

.hero__eyebrow {
    font-family: var(--font-display);
    color: var(--red);
    font-size: 1.1rem;
    margin: 0 0 24px;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 0 0 28px;
    max-width: 14ch;
}

.hero__body {
    font-size: 1.1rem;
    color: rgba(243, 237, 230, 0.75);
    max-width: 48ch;
    margin: 0 0 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Photo card */
.photo-card {
    border: 1px solid rgba(243, 237, 230, 0.12);
    border-radius: 24px;
    padding: 20px;
    background: rgba(243, 237, 230, 0.02);
}

.photo-card__frame {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: rgba(243, 237, 230, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 237, 230, 0.4);
    font-size: 0.9rem;
    text-align: center;
    border: 1px dashed rgba(243, 237, 230, 0.2);
}

.photo-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Status widget */
.status-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: var(--off-white);
}

.status-widget__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(243, 237, 230, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-widget__icon {
    font-size: 20px;
    color: var(--red);
}

.status-widget__icon.is-awake {
    color: var(--off-white);
}

.status-widget__text h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--off-white);
}

.status-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    color: var(--off-white);
    line-height: 1.6;
}

/* ============================================
Header layout + wordmark
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px var(--gutter);
    background: rgba(11, 11, 11, 0.7);
    /*
       IMPORTANT: no backdrop-filter, transform, or filter on this
       element. The mobile nav panel (<nav class="mobile">) is nested
       INSIDE this header and is position:fixed. Any of those
       properties on an ancestor creates a new "containing block" for
       fixed-position descendants, trapping the panel inside this
       header's shallow height instead of the full viewport — this
       has broken the mobile menu twice already for exactly this
       reason. If a glass/blur header look is wanted again later, the
       mobile nav must first be moved to be a sibling of <header>
       rather than a child.
    */
}

.site-header__mark {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--off-white); /* default: dark-background pages. Override per page below. */
}

/*
   Per-page logo color override:
   Add a class to <body> for a specific page and set the
   color here. Example for a white-background page:

   body.mode-light .site-header__mark { color: var(--black); }
*/

/* ============================================
   Work preview grid (mobile-first)
   ============================================ */

.work-preview {
    padding: 80px 0;
}

.work-preview__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.work-preview__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.work-preview__all {
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 600;
    align-self: flex-start;
}

.work-preview__all:hover {
    color: var(--off-white);
}

.work-preview__grid,
.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.work-card {
    display: block;
    color: var(--off-white);
}

.work-card__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    border: 1px dashed rgba(243, 237, 230, 0.2);
    background: rgba(243, 237, 230, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 237, 230, 0.4);
    font-size: 0.9rem;
    overflow: hidden;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card:hover .work-card__image {
    border-color: var(--red);
}

.work-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.work-card__tag {
    font-size: 0.85rem;
    color: rgba(243, 237, 230, 0.55);
}

@media screen and (min-width: 768px) {
    .work-preview__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .work-preview__grid,
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* ============================================
   Page heading (reused across work.html, about.html, contact.html)
   ============================================ */

.page-heading {
    padding: 160px 0 60px;
}

.page-heading__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.page-heading__body {
    font-size: 1.1rem;
    color: rgba(243, 237, 230, 0.7);
    max-width: 50ch;
}

/* ============================================
   Work index grid (mobile-first)
   ============================================ */

.work-index {
    padding-bottom: 100px;
}

/* ============================================
   Shared section heading (reused across pages)
   ============================================ */

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 32px;
}

/* ============================================
   About: bio (mobile-first)
   ============================================ */

.about-bio {
    padding-bottom: 60px;
}

.about-bio__paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(243, 237, 230, 0.85);
    max-width: 65ch;
    margin-bottom: 20px;
}

.about-bio__paragraph:last-child {
    margin-bottom: 0;
}

/* ============================================
   About: skills (mobile-first)
   ============================================ */

.skills {
    padding: 60px 0;
    border-top: 1px solid rgba(243, 237, 230, 0.08);
}

.skills__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.skills__category {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.skills__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skills__tags li {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(243, 237, 230, 0.15);
    color: rgba(243, 237, 230, 0.8);
}

@media screen and (min-width: 768px) {
    .skills__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1130px) {
    .skills__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   About: experience timeline (mobile-first)
   ============================================ */

.timeline {
    padding: 60px 0 100px;
    border-top: 1px solid rgba(243, 237, 230, 0.08);
}

.timeline__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Connecting line running behind the logo nodes */
.timeline__list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 23px;
    width: 2px;
    background: rgba(243, 237, 230, 0.12);
}

.timeline__item {
    position: relative;
    display: flex;
    gap: 20px;
}

.timeline__logo {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(243, 237, 230, 0.08);
    border: 1px solid rgba(243, 237, 230, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
}

.timeline__content {
    flex: 1;
    min-width: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(243, 237, 230, 0.08);
}

.timeline__item:last-child .timeline__content {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline__dates {
    display: block;
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline__role {
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline__company {
    font-size: 0.95rem;
    color: rgba(243, 237, 230, 0.6);
    margin-bottom: 10px;
}

.timeline__desc {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(243, 237, 230, 0.8);
    max-width: 60ch;
    margin-bottom: 12px;
}

.timeline__more {
    background: none;
    border: none;
    padding: 0;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 14px;
}

.timeline__more:hover {
    color: var(--red);
}

.timeline__bullets {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline__bullets.is-hidden {
    display: none;
}

.timeline__bullets li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(243, 237, 230, 0.75);
    max-width: 65ch;
}

.timeline__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline__tags li {
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(162, 15, 18, 0.12);
    color: var(--red);
}


/* ============================================
   Accessibility utility
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Contact: chat-bubble form (mobile-first)
   ============================================ */

.chat-contact {
    padding-bottom: 100px;
}

.chat-window {
    background: var(--black);
    border: 1px solid rgba(243, 237, 230, 0.12);
    border-radius: 24px;
    padding: 24px;
    max-width: 640px;
    overflow: hidden;
}

.chat-window__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chat-window__handle {
    font-weight: 700;
    color: var(--red);
    font-size: 0.9rem;
}

.chat-window__icons {
    display: flex;
    gap: 16px;
    color: rgba(243, 237, 230, 0.5);
    font-size: 1rem;
}

.chat-window__system {
    font-size: 0.85rem;
    color: rgba(243, 237, 230, 0.4);
    font-style: italic;
    margin-bottom: 20px;
}

.chat-window__transcript {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.chat-bubble {
    position: relative;
    max-width: 80%;
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
}

.chat-bubble--agent {
    background: var(--red);
    color: var(--off-white);
    font-weight: 600;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    margin-bottom: 14px;
}

.chat-bubble--sent {
    background: rgba(243, 237, 230, 0.1);
    color: var(--off-white);
    border-bottom-right-radius: 4px;
}

.chat-step.is-hidden {
    display: none;
}

.chat-step input,
.chat-step textarea {
    width: 100%;
    background: rgba(243, 237, 230, 0.06);
    border: 1px solid rgba(243, 237, 230, 0.15);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 12px;
    resize: vertical;
}

.chat-step input::placeholder,
.chat-step textarea::placeholder {
    color: rgba(243, 237, 230, 0.35);
}

.chat-step input:focus,
.chat-step textarea:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.chat-step__next,
.chat-step__send {
    background: var(--off-white);
    color: var(--black);
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.chat-step__next:hover,
.chat-step__send:hover {
    background: var(--red);
    color: var(--off-white);
}

.chat-window__error {
    font-size: 0.85rem;
    color: var(--red);
    margin-top: 12px;
}

.chat-window__error.is-hidden {
    display: none;
}

.chat-window__confirmation {
    padding-top: 8px;
}

.chat-window__confirmation.is-hidden {
    display: none;
}

form.is-hidden {
    display: none;
}

@media screen and (min-width: 768px) {
    .chat-window {
        padding: 36px;
    }

    .chat-bubble {
        font-size: 1.05rem;
    }
}

/* ============================================
   Case study template (mobile-first)
   ============================================ */

.case-hero {
    padding: 150px 0 0;
}

.case-hero__eyebrow {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.case-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.case-hero__tagline {
    font-size: 1.1rem;
    color: rgba(243, 237, 230, 0.75);
    max-width: 55ch;
    margin-bottom: 32px;
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(243, 237, 230, 0.08);
    margin-bottom: 40px;
}

.case-meta__label {
    display: block;
    font-size: 0.78rem;
    color: rgba(243, 237, 230, 0.5);
    margin-bottom: 4px;
}

.case-meta__value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.case-hero__image {
    aspect-ratio: 16 / 9;
    background: rgba(243, 237, 230, 0.04);
    border: 1px dashed rgba(243, 237, 230, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 237, 230, 0.4);
    font-size: 0.9rem;
    overflow: hidden;
}

.case-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-body {
    padding: 60px 0;
}

.case-body__narrow {
    max-width: 70ch;
}

.case-body__text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(243, 237, 230, 0.85);
}

.case-gallery {
    padding: 20px 0 60px;
}

.case-gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.case-gallery__item {
    aspect-ratio: 4 / 3;
    background: rgba(243, 237, 230, 0.04);
    border: 1px dashed rgba(243, 237, 230, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 237, 230, 0.4);
    font-size: 0.9rem;
    overflow: hidden;
}

.case-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-next {
    background: var(--red);
    padding: 60px 0;
}

.case-next__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-next__label {
    font-size: 0.85rem;
    color: rgba(11, 11, 11, 0.6);
    font-weight: 600;
}

.case-next__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--black);
}

.case-next__title:hover {
    color: var(--off-white);
}

@media screen and (min-width: 768px) {
    .case-meta {
        grid-template-columns: repeat(4, 1fr);
    }

    .case-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-next__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   Site footer (mobile-first)
   ============================================ */

.site-footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(243, 237, 230, 0.08);
    background: var(--black);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 var(--gutter);
}

.footer-mark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--off-white);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: rgba(243, 237, 230, 0.7);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    gap: 18px;
    font-size: 1.1rem;
}

.footer-social a {
    color: rgba(243, 237, 230, 0.6);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--red);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(243, 237, 230, 0.4);
}

@media screen and (min-width: 768px) {
    .footer-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}