/* =========================================================================
   Hector Ignacio Serrano — Filmmaker portfolio
   v02 — Full-bleed cinematic. No divider lines, no cards, no chrome.
   The imagery is the structure. Type sits on top.
   All design tokens live in :root so the look is easy to tweak.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
    /* Color */
    --bg:           #0a0a0b;          /* near-black canvas */
    --bg-deep:      #000000;          /* true black for letterboxed media */
    --ink:          #f3efe8;          /* warm off-white text */
    --ink-muted:    #a09b91;          /* secondary text */
    --ink-dim:      #6a665e;          /* tertiary / metadata */
    --accent:       #976620;          /* bronze — for "Ignacio" + festival qualifiers + About hover */
    --accent-2:     #248675;          /* teal — for nav default + "Fábula" attribution + slash */

    /* Typography */
    --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

    /* Scale */
    --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.86rem);
    --step-0:  clamp(0.95rem, 0.90rem + 0.25vw, 1.05rem);
    --step-1:  clamp(1.10rem, 1.02rem + 0.4vw,  1.30rem);
    --step-2:  clamp(1.50rem, 1.30rem + 0.9vw,  2.00rem);
    --step-3:  clamp(2.10rem, 1.70rem + 1.9vw,  3.20rem);
    --step-4:  clamp(3.00rem, 2.30rem + 3.2vw,  5.20rem);
    --step-5:  clamp(4.20rem, 3.00rem + 5.6vw,  8.20rem);

    /* Layout */
    --max:      1480px;
    --gutter:   clamp(1.25rem, 3vw, 3rem);
    --section:  clamp(5rem, 10vw, 10rem);

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ---------- Base ---------- */
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--step-0);
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection { background: rgba(151, 102, 32, 0.32); color: var(--ink); }

a {
    color: inherit;
    text-decoration: none;
    transition: color 220ms var(--ease), opacity 220ms var(--ease);
}
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.02;
    margin: 0;
}
em, i { font-style: italic; }

p { margin: 0 0 1.25em; }

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

.eyebrow {
    font-family: var(--sans);
    font-size: var(--step--1);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--ink-muted);
    font-weight: 500;
    margin: 0;
}

/* ---------- Nav ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--gutter);
    background: linear-gradient(to bottom, rgba(10,10,11,0.55), rgba(10,10,11,0));
    pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.site-header__brand {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 0.92rem + 0.55vw, 1.45rem);
    letter-spacing: -0.005em;
    text-transform: none;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
}
.brand-accent,
.accent {
    color: var(--accent);
}
.accent-2 {
    color: var(--accent-2);
}

.site-nav { display: flex; gap: clamp(1.5rem, 3.5vw, 3rem); }
.site-nav a {
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-2);
    position: relative;
    font-weight: 500;
    transition: color 220ms var(--ease);
}
.site-nav a:hover { color: var(--ink); }

/* Fabula is permanently teal — including on the Fabula page itself */
/* (no .is-active override — the base teal color carries through) */

/* About is permanently white; hovers to bronze */
.site-nav a.nav-about { color: var(--ink); }
.site-nav a.nav-about:hover { color: var(--accent); }

/* ---------- Home: single-frame, no scroll ---------- */
body.home, html.home {
    height: 100vh;
    overflow: hidden;
}

/* Decorative 35mm filmstrip at the top of the home hero — tiles edge to edge */
body.home .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(54px, 6.5vh, 84px);
    background-image: url('../images/35mm-filmstrip_transparent.png');
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%;
    z-index: 4;
    pointer-events: none;
}

/* On home, soften the nav scrim so the filmstrip behind it shows through */
body.home .site-header {
    background: linear-gradient(to bottom, rgba(10,10,11,0.32), rgba(10,10,11,0));
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100svh; /* better fit on mobile */
    overflow: hidden;
    background: var(--bg-deep);
}
.hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    animation: hero-drift 28s ease-in-out infinite alternate;
}
@keyframes hero-drift {
    from { transform: scale(1.03) translateY(0); }
    to   { transform: scale(1.08) translateY(-1%); }
}
.hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.7) 100%);
}

/* Title block — bottom left */
.hero__title-block {
    position: absolute;
    left: var(--gutter);
    bottom: clamp(2rem, 6vh, 4rem);
    z-index: 2;
    max-width: min(90%, 38ch);
}
.hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--step-4);
    letter-spacing: -0.025em;
    line-height: 0.95;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero__title .em { font-style: italic; }
.hero__role {
    display: block;
    margin-top: clamp(0.85rem, 2vh, 1.25rem);
    font-family: var(--sans);
    font-size: var(--step--1);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
    text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

/* Quote — middle right, marginalia-style */
.hero__quote {
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 22ch;
    text-align: right;
    text-shadow: 0 1px 16px rgba(0,0,0,0.55);
}
.hero__quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(0.82rem, 0.78rem + 0.18vw, 0.95rem);
    line-height: 1.55;
    margin: 0;
    color: var(--ink);
    letter-spacing: 0.005em;
}
.hero__quote-attr {
    display: block;
    margin-top: 0.85rem;
    font-style: normal;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-2);
    font-weight: 500;
}

/* On narrow screens, retire the quote rather than crowd the subject */
@media (max-width: 760px) {
    .hero__quote { display: none; }
}

/* ---------- Quote slab (no chrome) ---------- */
.slab {
    padding-block: clamp(7rem, 14vw, 12rem);
    padding-inline: var(--gutter);
}
.slab__inner {
    max-width: 32ch;
    margin: 0 auto;
    text-align: left;
}
.slab--center .slab__inner { margin: 0 auto; text-align: center; max-width: 28ch; }
.slab blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--step-4);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--ink);
}
.slab__attr {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    color: var(--ink-muted);
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--sans);
}

/* ---------- Full-bleed feature (image + title overlay) ---------- */
.feature {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: grid;
    background: var(--bg-deep);
    overflow: hidden;
}
.feature__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1400ms var(--ease), filter 1000ms var(--ease);
}
.feature:hover .feature__media {
    transform: scale(1.025);
}
.feature__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.75) 100%);
}
.feature__content {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: var(--gutter);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.feature__eyebrow {
    color: var(--ink);
    opacity: 0.85;
}
.feature__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--step-5);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0;
}
.feature__cta {
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}
.feature__cta::after {
    content: "→";
    transition: transform 280ms var(--ease);
}
.feature:hover .feature__cta::after { transform: translateX(8px); }

/* ---------- Page wrapper (interior pages) ---------- */
.page-top {
    padding: clamp(8rem, 18vh, 13rem) var(--gutter) clamp(2rem, 5vw, 4rem);
}
.page-top__eyebrow { margin-bottom: 1.5rem; }
.page-top__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--step-4);
    max-width: 14ch;
    letter-spacing: -0.02em;
    line-height: 1.0;
}

/* ---------- Project: film player at top of Fabula ---------- */
/* The whole .film section is sized to fit one browser height. */
.film {
    width: 100%;
    height: 100vh;
    height: 100svh;
    box-sizing: border-box;
    background: var(--bg-deep);
    padding: clamp(5rem, 10vh, 7rem) var(--gutter) clamp(1.5rem, 4vh, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.85rem, 2.5vh, 1.75rem);
}
.film__title {
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--step-4);
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 0.95;
    color: var(--accent-2);
}
.film__player {
    position: relative;
    width: 100%;
    max-width: var(--max);
    aspect-ratio: 21 / 9;
    max-height: 62vh;
    background: var(--bg-deep);
    overflow: hidden;
}
.film__player iframe,
.film__player video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    background: var(--bg-deep);
}
.film__poster {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity 600ms var(--ease);
}
.film__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 3;
    transition: background 320ms var(--ease), opacity 600ms var(--ease);
}
.film__play:hover { background: rgba(0,0,0,0.18); }

/* When the user has clicked Play, fade poster + play button out */
.film__player[data-state="playing"] .film__poster,
.film__player[data-state="playing"] .film__play {
    opacity: 0;
    pointer-events: none;
}
.film__play-circle {
    width: clamp(64px, 9vw, 96px);
    height: clamp(64px, 9vw, 96px);
    border-radius: 50%;
    border: 1px solid rgba(243, 239, 232, 0.85);
    display: grid;
    place-items: center;
    background: rgba(10, 10, 11, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 280ms var(--ease), background 280ms var(--ease), border-color 280ms var(--ease);
}
.film__play:hover .film__play-circle {
    transform: scale(1.06);
    background: rgba(200, 169, 106, 0.18);
    border-color: var(--accent);
}
.film__play-circle::before {
    content: "";
    width: 0; height: 0;
    border-left: 14px solid var(--ink);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}
.film__caption {
    text-align: center;
    margin: 0;
    color: var(--ink-muted);
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

/* ---------- Editorial body block (synopsis / about bio) ---------- */
.editorial {
    padding-block: clamp(4rem, 8vw, 8rem);
    padding-inline: var(--gutter);
}
.editorial__inner {
    max-width: 60rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
}
@media (min-width: 880px) {
    .editorial__inner { grid-template-columns: 14ch 1fr; align-items: start; }
}
.editorial__label {
    color: var(--ink-muted);
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.editorial__body p {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--step-2);
    line-height: 1.32;
    color: var(--ink);
    margin: 0 0 1em;
    max-width: 50ch;
}
.editorial__body p:last-child { margin-bottom: 0; }

/* ---------- Festivals (typographic, no cards) ---------- */
.festivals {
    padding-block: clamp(4rem, 8vw, 8rem);
    padding-inline: var(--gutter);
}
.festivals__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 880px) {
    .festivals__inner { grid-template-columns: 14ch 1fr; align-items: start; }
}
.festivals__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 2rem);
}
.festival {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}
.festival__name {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--step-3);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.festival__qualifier {
    color: var(--accent);
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--sans);
}
.festival__noms {
    margin: 0.6rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink-muted);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-family: var(--sans);
    font-size: var(--step-0);
}
.festival__noms li::before {
    content: "— ";
    color: var(--ink-dim);
}

/* ---------- Stills carousel (swipeable, scroll-snap) ---------- */
.gallery {
    position: relative;
    width: 100%;
    background: var(--bg-deep);
    padding: clamp(2rem, 4vw, 4rem) 0;
}
.gallery__track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    outline: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide {
    flex: 0 0 100%;
    margin: 0;
    scroll-snap-align: center;
    background: var(--bg-deep);
    overflow: hidden;
}
.gallery__slide img {
    width: 100%;
    aspect-ratio: 2.35 / 1;
    object-fit: cover;
    display: block;
    transition: transform 1400ms var(--ease);
}
.gallery__slide:hover img { transform: scale(1.02); }

/* Arrow navigation */
.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(44px, 4.5vw, 56px);
    height: clamp(44px, 4.5vw, 56px);
    border-radius: 50%;
    border: 1px solid rgba(243, 239, 232, 0.35);
    background: rgba(10, 10, 11, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    transition:
        background 240ms var(--ease),
        border-color 240ms var(--ease),
        transform 240ms var(--ease);
}
.gallery__nav:hover {
    background: rgba(36, 134, 117, 0.35);
    border-color: var(--accent-2);
    transform: translateY(-50%) scale(1.05);
}
.gallery__nav:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
}
.gallery__nav--prev { left: clamp(0.75rem, 2vw, 2rem); }
.gallery__nav--next { right: clamp(0.75rem, 2vw, 2rem); }

/* Slide counter */
.gallery__count {
    position: absolute;
    bottom: clamp(1.25rem, 3vw, 2rem);
    right: clamp(1.25rem, 3vw, 2rem);
    z-index: 3;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    color: var(--ink);
    text-shadow: 0 1px 12px rgba(0,0,0,0.6);
    font-weight: 500;
}
.gallery__count .current { color: var(--accent); }

/* Hide arrows on small screens — touch-swipe only */
@media (max-width: 720px) {
    .gallery__nav { display: none; }
}

/* ---------- Credits (clean typographic blocks) ---------- */
.credits {
    padding-block: clamp(5rem, 10vw, 9rem);
    padding-inline: var(--gutter);
}
.credits__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 880px) {
    .credits__inner { grid-template-columns: repeat(3, 1fr); }
}
.credits__group { display: block; }
.credits__heading {
    font-family: var(--sans);
    font-size: var(--step--1);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 0 0 1.5rem;
}
.credits dl { margin: 0; }
.credits dt {
    color: var(--ink-dim);
    font-size: var(--step--1);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 1rem;
    font-family: var(--sans);
}
.credits dt:first-child { margin-top: 0; }
.credits dd {
    margin: 0.2rem 0 0;
    font-family: var(--serif);
    font-size: var(--step-1);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.3;
}

/* ---------- About: portrait + bio ---------- */
.about {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    background: var(--bg-deep);
}
@media (min-width: 1000px) {
    .about { grid-template-columns: 5fr 7fr; min-height: 100vh; }
}

/* Scroll-down cue at the bottom of the About hero — wide, flat chevron */
.about__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(1.25rem, 3vw, 2rem);
    transform: translateX(-50%);
    z-index: 3;
    color: var(--ink);
    opacity: 0.7;
    display: grid;
    place-items: center;
    padding: 1rem 1.5rem;
    transition: color 240ms var(--ease), opacity 240ms var(--ease);
}
.about__scroll-cue:hover {
    opacity: 1;
    color: var(--accent-2);
}
.about__scroll-cue svg {
    display: block;
    width: clamp(96px, 14vw, 168px);
    height: auto;
}
.about__portrait {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    overflow: hidden;
}
@media (min-width: 1000px) {
    .about__portrait { aspect-ratio: auto; }
}
.about__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(0.1) contrast(1.04);
}
.about__bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    background: var(--bg);
}
.about__bio-inner {
    max-width: 56ch;
}
.about__bio p {
    font-family: var(--serif);
    font-weight: 300;
    font-size: var(--step-1);
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 1.1em;
}
.about__bio p:last-child { margin-bottom: 0; }

/* ---------- Contact block (About) ---------- */
.contact {
    padding-block: clamp(4rem, 8vw, 7rem);
    padding-inline: var(--gutter);
    background: var(--bg);
}
.contact__inner {
    max-width: var(--max);
    margin: 0 auto;
}
.contact__list {
    margin: 0; padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}
@media (min-width: 720px) {
    .contact__list { grid-template-columns: repeat(2, 1fr); }
}
.contact__list dt {
    color: var(--ink-muted);
    font-size: var(--step--1);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-family: var(--sans);
}
.contact__list dd {
    margin: 0;
    font-family: var(--serif);
    font-size: var(--step-2);
    font-weight: 300;
}
.contact__list dd a {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
}
.icon-instagram {
    width: 0.78em;
    height: 0.78em;
    color: var(--ink-muted);
    flex-shrink: 0;
    transition: color 220ms var(--ease);
}
.contact__list dd a:hover .icon-instagram {
    color: var(--accent);
}

/* ---------- Colophon (replaces footer) ---------- */
.colophon {
    padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
    text-align: center;
    background: var(--bg);
}
.colophon p {
    margin: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-dim);
    font-weight: 500;
}

/* ---------- Motion-safe entrance ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        animation: reveal 1100ms var(--ease) forwards;
    }
    .reveal--1 { animation-delay: 120ms; }
    .reveal--2 { animation-delay: 280ms; }
    .reveal--3 { animation-delay: 440ms; }
}
@keyframes reveal {
    to { opacity: 1; transform: none; }
}

/* ---------- Small-screen tweaks ---------- */
@media (max-width: 540px) {
    .site-header { padding: 1.1rem var(--gutter); }
    .site-nav { gap: 1.1rem; }
    .site-nav a, .site-header__brand { font-size: 0.68rem; letter-spacing: 0.22em; }
}
