/* ==========================================================================
   Nelson Feliciano - nelsonfeliciano.com
   Single stylesheet for every page.

   Layout and typographic language adapted from two Pixieset templates:
     - Odette : editorial serif, wide tracking, generous white space (home, about)
     - Oslo   : clean two-up gallery grid with tracked captions (photography, projects)

   The palette is deliberately neutral on pure white so the photographs
   carry all of the colour on the page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Colour */
    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #faf9f8;          /* barely-there band, used sparingly */
    --ink: #1a1a1a;              /* headings */
    --ink-soft: #4c4c4c;         /* body copy */
    --ink-mute: #6b6b6b;         /* eyebrows, captions, meta */
    --rule: #e6e4e0;             /* hairlines */

    /* Type */
    --serif: "DM Serif Display", "Times New Roman", Georgia, serif;
    --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --text-2xs: 0.65rem;
    --text-xs: 0.72rem;
    --text-sm: 0.82rem;
    --text-md: 0.94rem;
    --text-lg: 1.05rem;

    /* Tracking - both templates lean heavily on letter-spacing */
    --track-wide: 0.22em;
    --track-mid: 0.14em;
    --track-tight: 0.04em;

    /* Structure */
    --wrap: 1260px;
    --wrap-mid: 900px;
    --wrap-narrow: 640px;
    --gutter: clamp(1.25rem, 5vw, 4.5rem);
    --nav-h: 64px;

    /* Rhythm */
    --section-y: clamp(4rem, 10vw, 8.5rem);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 900px) {
    :root { --nav-h: 82px; }
}

/* --------------------------------------------------------------------------
   BASE
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: var(--text-md);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.015em;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 400;
    margin: 0;
}

p { margin: 0 0 1.35em; }
p:last-child { margin-bottom: 0; }

figure { margin: 0; }

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

/* --------------------------------------------------------------------------
   TYPE SCALE
   -------------------------------------------------------------------------- */

/* Small tracked label sitting above a heading - Odette uses these everywhere. */
.eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: var(--track-wide);
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 0 0 1.5rem;
}

/* Large uppercase serif - the signature of the Odette template. */
.display {
    font-family: var(--serif);
    font-size: clamp(2.05rem, 5.4vw, 3.5rem);
    letter-spacing: var(--track-tight);
    line-height: 1.08;
    text-transform: uppercase;
}

.display--sm { font-size: clamp(1.75rem, 4vw, 2.6rem); }

/* Section heading */
.h2 {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.9vw, 2.05rem);
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Italic serif accent line - the template's quieter, handwritten voice. */
.script {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    text-transform: none;
}

.lede { max-width: 46ch; }
.measure { max-width: 60ch; }
.text-center { text-align: center; }
.muted { color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wrap--mid { max-width: var(--wrap-mid); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 5rem); }

/* The ground stays pure white throughout, so closing sections are separated
   by a hairline rather than by a tinted band. */
.section--capped { border-top: 1px solid var(--rule); }

.rule {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 0;
}

.stack-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Screen-reader only */
.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;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -150%);
    z-index: 200;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: var(--text-xs);
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s var(--ease);
}

.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   BUTTONS AND LINKS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.95rem 2.4rem;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: var(--track-wide);
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
        border-color 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
    background-color: var(--ink);
    color: var(--white);
}

.btn--ghost { border-color: var(--rule); color: var(--ink-soft); }

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--ink);
    background-color: var(--ink);
    color: var(--white);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.stack-center .btn-row { justify-content: center; }

/* Small underlined text link - Oslo's "View Gallery". */
.link {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    text-decoration: none;
    padding-bottom: 2px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.35s var(--ease), color 0.35s var(--ease);
}

.link:hover,
.link:focus-visible {
    color: var(--ink);
    background-size: 100% 1px;
}

.link--arrow::after {
    content: "\2192";
    margin-left: 0.5em;
    display: inline-block;
    transition: transform 0.35s var(--ease);
}

.link--arrow:hover::after { transform: translateX(4px); }

/* The address itself, set large in italic serif as the focal point of the
   contact section. Uses the same growing underline as .link. */
.contact__email {
    display: inline-block;
    max-width: 100%;
    margin-top: 2rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 3.2vw, 1.75rem);
    line-height: 1.4;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 4px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.4s var(--ease);
}

.contact__email:hover,
.contact__email:focus-visible { background-size: 100% 1px; }

/* Anchored sections must clear the sticky header when jumped to. */
[id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

/* --------------------------------------------------------------------------
   NAVIGATION
   Desktop : links left - wordmark centred - links right   (Odette)
   Mobile  : wordmark left - hamburger right - full-screen overlay
   -------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg);
    border-bottom: 1px solid var(--rule);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--nav-h);
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.nav__wordmark {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.26em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    /* tracking adds a trailing gap, so nudge back to look optically centred */
    margin-right: -0.26em;
}

.nav__links {
    display: none;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 2.6rem);
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 0;
}

.nav__links--right { justify-content: flex-end; }

.nav__link {
    position: relative;
    display: inline-block;
    font-size: var(--text-2xs);
    font-weight: 400;
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding-block: 0.4rem;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link[aria-current="page"] { color: var(--ink); }

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Hamburger */
.nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--ink);
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: transform 0.35s var(--ease), opacity 0.2s linear;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.menu {
    position: fixed;
    inset: var(--nav-h) 0 0;
    z-index: 99;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem var(--gutter) 6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu li + li { margin-top: 1.4rem; }

.menu a {
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
}

.menu a[aria-current="page"] { color: var(--ink-mute); }

.menu__meta {
    margin-top: 3rem;
    font-size: var(--text-2xs);
    letter-spacing: var(--track-wide);
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* Six links plus the centred wordmark need about 1024px before they stop
   colliding; below that the overlay menu handles navigation. */
@media (min-width: 1024px) {
    .nav__links { display: flex; }
    .nav__toggle { display: none; }
    .menu { display: none; }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    border-top: 1px solid var(--rule);
    padding-block: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}

.footer__logo {
    width: 132px;
    height: auto;
    margin: 0 auto 1.4rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.75rem;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.footer__links a {
    font-size: var(--text-2xs);
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible { color: var(--ink); }

.footer__contact {
    margin: 0 0 1.25rem;
    font-size: var(--text-xs);
    letter-spacing: 0.06em;
}

.footer__contact a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
    color: var(--ink);
    border-color: var(--ink);
}

.footer__note {
    font-size: var(--text-2xs);
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 0;
}

/* Floating back-to-top */
.to-top {
    position: fixed;
    right: clamp(1rem, 3vw, 2.25rem);
    bottom: clamp(1rem, 3vw, 2.25rem);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--rule);
    background-color: var(--white);
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s,
        background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover,
.to-top:focus-visible {
    background-color: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* --------------------------------------------------------------------------
   REVEAL ON SCROLL
   Both templates fade content up as it enters the viewport. Only applied
   when JS is running, so the page still reads with scripting disabled.
   -------------------------------------------------------------------------- */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.js [data-reveal][data-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .js [data-reveal],
    .js [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   HOME + ABOUT  (Odette language)
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO
   A split hero: type on the left, portrait filling the right half. A portrait
   photograph cropped full-bleed across a wide screen turns into an extreme
   face crop, so the split keeps the frame intact and keeps the white ground
   that the template relies on.
   -------------------------------------------------------------------------- */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--rule);
}

.hero__media {
    order: -1;
    overflow: hidden;
    background-color: var(--bg-soft);
}

.hero__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 22%;
}

.hero__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.75rem, 8vw, 5rem) var(--gutter);
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 8vw, 3.75rem);
    letter-spacing: var(--track-tight);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.hero__title span { display: block; }

.hero__sub {
    margin: 1.25rem 0 0;
    max-width: 24ch;
}

.hero__rule {
    width: 56px;
    border: 0;
    border-top: 1px solid var(--ink);
    margin: 2rem 0;
}

@media (min-width: 900px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - var(--nav-h));
        align-items: stretch;
    }

    /* On a wide screen the portrait is set at roughly half width and centred
       in its column rather than bleeding to the edge, so it reads as a framed
       print on white. The tinted placeholder is dropped here, since the panel
       itself is now visible white space. */
    .hero__media {
        order: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        /* no side padding, so the 50% below is measured against the full
           column the photo used to fill */
        padding-block: clamp(2rem, 4vw, 3.5rem);
        padding-inline: 0;
        background-color: transparent;
    }

    .hero__media img {
        width: 50%;
        height: auto;
        min-width: 210px;
        max-height: 100%;
        /* the headshot is 2:3, so at this size it needs no crop at all */
        aspect-ratio: 2 / 3;
        object-position: center;
    }

    .hero__body { padding-inline: clamp(2rem, 6vw, 6rem); }
}

/* --------------------------------------------------------------------------
   TRACKED STRIP
   The thin band of tracked phrases Odette sits directly under its hero.
   -------------------------------------------------------------------------- */
.strip { border-bottom: 1px solid var(--rule); }

.strip__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 2.5rem;
    list-style: none;
    margin: 0;
    padding-block: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
}

.strip__list li {
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: var(--track-wide);
    text-transform: uppercase;
    color: var(--ink-mute);
}

@media (min-width: 720px) {
    .strip__list li + li::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 10px;
        margin-right: 2.5rem;
        background-color: var(--rule);
        vertical-align: middle;
    }
}

/* --------------------------------------------------------------------------
   FEATURE - image beside text, alternating sides
   -------------------------------------------------------------------------- */
.feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

/* Gallery work is all 3:2 landscape, so that is the default frame. */
.feature__media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* For the portrait-orientation source files (headshot, First-Photo). */
.feature__media--tall img { aspect-ratio: 4 / 5; }

.feature__body { max-width: 52ch; }

@media (min-width: 860px) {
    .feature { grid-template-columns: 1fr 1fr; }

    /* Flip the image to the right without changing source order. */
    .feature--reverse .feature__media { order: 2; }
}

/* --------------------------------------------------------------------------
   FULL-BLEED IMAGE BREAK
   -------------------------------------------------------------------------- */
.bleed {
    width: 100%;
    overflow: hidden;
}

.bleed img {
    width: 100%;
    height: clamp(260px, 52vw, 620px);
    object-fit: cover;
    object-position: center 55%;
}

/* Centred pull-quote */
.quote {
    text-align: center;
    max-width: 30ch;
    margin-inline: auto;
}

/* ==========================================================================
   PHOTOGRAPHY + PROJECTS  (Oslo language)
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HEADER
   -------------------------------------------------------------------------- */
.page-head {
    text-align: center;
    padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 3.5rem);
}

.page-head .script { margin-top: 1rem; }

.page-head p:not(.script) {
    margin-top: 1.5rem;
    margin-inline: auto;
    max-width: 56ch;
}

/* --------------------------------------------------------------------------
   GALLERY GRID
   Oslo's two-up grid: a frame, a tracked caption, and a small
   "View Gallery" link beneath it.
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.card { display: block; }

.card__frame {
    overflow: hidden;
    background-color: var(--bg-soft);
}

.card__frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.card__title {
    font-family: var(--sans);
    font-size: var(--text-lg);
    font-weight: 400;
    letter-spacing: 0.11em;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--ink);
    margin: 1.5rem 0 0.6rem;
}

.card__meta {
    display: block;
    font-size: var(--text-2xs);
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.6rem;
}

/* Each card is a single link, so hover state is driven from the anchor. */
.card > a {
    display: block;
    text-decoration: none;
}

.card > a:hover .card__frame img,
.card > a:focus-visible .card__frame img { transform: scale(1.04); }

.card > a:hover .link,
.card > a:focus-visible .link {
    color: var(--ink);
    background-size: 100% 1px;
}

/* Three-up preview used on the home page */
.grid--three { gap: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 2rem); }

@media (min-width: 760px) {
    .grid--three { grid-template-columns: repeat(3, 1fr); }
}

.grid--three .card__title {
    font-size: var(--text-sm);
    letter-spacing: var(--track-mid);
    margin-top: 1.1rem;
}

/* --------------------------------------------------------------------------
   ABOUT - captioned figures
   -------------------------------------------------------------------------- */
.figure img { width: 100%; }

.figure--portrait img { aspect-ratio: 3 / 4; object-fit: cover; }
.figure--landscape img { aspect-ratio: 3 / 2; object-fit: cover; }

.figure figcaption {
    font-size: var(--text-2xs);
    letter-spacing: var(--track-mid);
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 0.9rem;
}

.figure-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 720px) {
    .figure-pair { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   PROJECTS - coming soon
   -------------------------------------------------------------------------- */
.soon {
    text-align: center;
    padding-block: clamp(3.5rem, 9vw, 7rem);
}

.soon__mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2.25rem, 7vw, 4rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 1.5rem;
}

.soon__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
}

.soon__list li {
    font-size: var(--text-2xs);
    letter-spacing: var(--track-wide);
    text-transform: uppercase;
    color: var(--ink-mute);
}
