/* racheleblackburn.com BETA — Gallery Editorial design system */
:root {
    --ink: #141414;
    --cream: #f4f1ea;
    --card: #fffdf9;
    --sage: #5e7d6a;
    --peach: #e8a87c;
    --lilac: #b89bc4;
    --teal: #7fb5b5;
    --taupe: #7d6a52;
    --border: #d8d2c4;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Spectral', Georgia, serif;
    --font-label: 'Archivo', 'Segoe UI', sans-serif;
    --max-width: 1140px;
    --shadow-card: 0 4px 18px rgba(20, 20, 20, .08);
    --shadow-jacket: 0 14px 34px rgba(20, 20, 20, .25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--cream);
    /* speckled paper texture echoing the cover's stone background */
    background-image: radial-gradient(rgba(20, 20, 20, .035) 1px, transparent 1px);
    background-size: 4px 4px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.08; }
.kicker {
    font-family: var(--font-label); font-weight: 600; font-size: .78rem;
    letter-spacing: .24em; text-transform: uppercase; color: var(--taupe);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}


/* ---------------------------------------------------------------- */
/* Links                                                            */
/* ---------------------------------------------------------------- */
a { color: var(--sage); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--ink); }

::selection { background: var(--peach); color: var(--ink); }

/* ---------------------------------------------------------------- */
/* Skip link                                                        */
/* ---------------------------------------------------------------- */
.skip-link {
    position: absolute; left: 1rem; top: -3.5rem; z-index: 200;
    font-family: var(--font-label); font-size: .8rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
    color: var(--cream); background: var(--ink);
    padding: .6em 1.2em; border-radius: 0 0 .5rem .5rem;
    transition: top .2s ease;
}
.skip-link:focus { top: 0; color: var(--cream); outline: 2px solid var(--peach); outline-offset: 2px; }

/* ---------------------------------------------------------------- */
/* Header / nav (sticky, cream with blur)                           */
/* ---------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(244, 241, 234, .88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav {
    max-width: var(--max-width); margin: 0 auto;
    padding: .85rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
}
.nav-name {
    font-family: var(--font-display); font-weight: 600; font-style: italic;
    font-size: 1.3rem; color: var(--ink); text-decoration: none;
    white-space: nowrap; line-height: 1.2;
}
.nav-name:hover { color: var(--sage); }
.nav-links {
    display: flex; align-items: center; gap: 1.4rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-label); font-weight: 500; font-size: .8rem;
    letter-spacing: .07em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    padding: .35em 0; border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a[aria-current="page"] { color: var(--sage); border-bottom-color: var(--sage); }

/* Hamburger (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid transparent; border-radius: .4rem;
    cursor: pointer;
}
.nav-toggle:hover { border-color: var(--border); }
.nav-toggle:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--ink); border-radius: 1px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
    .nav { flex-wrap: wrap; padding: .7rem 1.25rem; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column; align-items: flex-start; gap: 0;
        width: 100%; padding: .5rem 0 .75rem;
        border-top: 1px solid var(--border); margin-top: .7rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; width: 100%; padding: .7em .25em;
        border-bottom: 1px solid transparent; font-size: .85rem;
    }
    .nav-links a[aria-current="page"] { border-bottom-color: transparent; }
}

/* ---------------------------------------------------------------- */
/* Sections / containers                                            */
/* ---------------------------------------------------------------- */
main { display: block; }
.section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.section h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1.1rem; }
.section .kicker { margin-bottom: .65rem; }
.section-alt { background: rgba(255, 253, 249, .55); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

@media (max-width: 880px) {
    .section { padding: 3rem 1.25rem; }
}

/* ---------------------------------------------------------------- */
/* Buttons                                                          */
/* ---------------------------------------------------------------- */
.btn, .btn-outline {
    display: inline-block;
    font-family: var(--font-label); font-weight: 600; font-size: .82rem;
    letter-spacing: .1em; text-transform: uppercase;
    padding: .9em 1.9em; border-radius: 2px;
    text-decoration: none; line-height: 1.3; text-align: center;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease,
                transform .2s ease, box-shadow .2s ease;
}
.btn {
    background: var(--ink); color: var(--cream);
    border: 1px solid var(--ink);
}
.btn:hover {
    background: var(--sage); border-color: var(--sage); color: var(--cream);
    transform: translateY(-2px); box-shadow: var(--shadow-card);
}
.btn-outline {
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-outline:hover {
    background: var(--ink); color: var(--cream);
    transform: translateY(-2px); box-shadow: var(--shadow-card);
}
.btn:focus-visible, .btn-outline:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* ---------------------------------------------------------------- */
/* Cards                                                            */
/* ---------------------------------------------------------------- */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem 1.9rem;
    box-shadow: var(--shadow-card);
}
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card .kicker { font-size: .7rem; margin-bottom: .55rem; }
.card-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
/* watercolor accent rule along the card's top edge */
.card-accent { position: relative; overflow: hidden; }
.card-accent::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--teal), var(--lilac), var(--peach));
    opacity: .75;
}

/* Two-column credits grid (directing/conferences listings) */
.card-grid-2 {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.75rem;
    align-items: start;
}
/* Simple separated list inside a card */
.card-list { list-style: none; }
.card-list li { padding: .6rem 0; }
.card-list li + li { border-top: 1px solid var(--border); }

@media (max-width: 880px) {
    .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
    .card { padding: 1.4rem 1.5rem; }
}

/* ---------------------------------------------------------------- */
/* Hero — staggered page-load reveal                                */
/* ---------------------------------------------------------------- */
.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .25s; }
.hero .reveal:nth-child(4) { transition-delay: .35s; }
.hero .reveal:nth-child(5) { transition-delay: .45s; }
.hero .reveal:nth-child(6) { transition-delay: .55s; }
.hero-inner .reveal:nth-child(1) { transition-delay: .05s; }
.hero-inner .reveal:nth-child(2) { transition-delay: .15s; }
.hero-inner .reveal:nth-child(3) { transition-delay: .25s; }
.hero-inner .reveal:nth-child(4) { transition-delay: .35s; }
.hero-inner .reveal:nth-child(5) { transition-delay: .45s; }

/* ---------------------------------------------------------------- */
/* Hero — editorial overlap (homepage)                              */
/* ---------------------------------------------------------------- */
.hero {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1.1fr .9fr;   /* photo holds the right ~45% */
    gap: 2.5rem;
    align-items: end;
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 1.5rem; }
.hero-name {
    position: relative;
    width: 140%;                          /* lets the name run over the photo */
    max-width: none;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 580;
    line-height: .98;
    letter-spacing: -.015em;
    margin: 1rem 0 .75rem;
}
.hero-name .accent { display: block; color: var(--sage); font-style: italic; }
.hero-creds {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.15rem; color: var(--taupe); margin-bottom: 1.25rem;
}
.hero-lede { max-width: 33rem; font-size: 1.04rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero-photo { position: relative; z-index: 1; }
.hero-photo::before {
    /* offset watercolor mat behind the photo */
    content: ""; position: absolute; z-index: -1;
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    background: linear-gradient(135deg, rgba(94, 125, 106, .28), rgba(232, 168, 124, .24) 50%, rgba(184, 155, 196, .26));
}
.hero-photo img { width: 100%; box-shadow: var(--shadow-card); }

/* Book jacket tucked over the photo's lower-left corner */
.hero-jacket {
    position: absolute; z-index: 3;
    left: calc(56% - 80px); bottom: 2.75rem;
    width: clamp(120px, 13vw, 165px);
    text-decoration: none;
    transform: rotate(-3deg);
    transition: transform .25s ease;
}
.hero-jacket img { width: 100%; box-shadow: var(--shadow-jacket); }
.hero-jacket:hover { transform: translateY(-4px) rotate(-3deg); }
/* keep the tilt through the .reveal transform states */
.hero-jacket.reveal { transform: translateY(24px) rotate(-3deg); }
.hero-jacket.reveal.visible { transform: rotate(-3deg); }
.hero-jacket.reveal.visible:hover { transform: translateY(-4px) rotate(-3deg); }
.jacket-flag {
    display: block; margin-top: .6rem;
    font-family: var(--font-label); font-weight: 600; font-size: .62rem;
    letter-spacing: .16em; text-transform: uppercase; text-align: center;
    color: var(--cream); background: var(--sage);
    padding: .5em .9em;
}

@media (max-width: 880px) {
    .hero {
        display: flex; flex-direction: column; align-items: flex-start;
        gap: 1.75rem; padding: 2.25rem 1.25rem 3rem;
    }
    .hero-inner { padding-bottom: 0; }
    .hero-photo { order: -1; width: min(100%, 420px); }
    .hero-photo::before { inset: .9rem -.9rem -.9rem .9rem; }
    .hero-name { width: auto; }
    .hero-jacket,
    .hero-jacket.reveal.visible {
        position: static; transform: none;
        display: flex; align-items: center; gap: 1rem;
        width: auto; margin-top: .25rem;
    }
    .hero-jacket.reveal { transform: translateY(24px); }
    .hero-jacket.reveal.visible:hover { transform: none; }
    .hero-jacket img { width: 104px; }
    .jacket-flag { display: inline-block; margin: 0; }
}

/* ---------------------------------------------------------------- */
/* Book shelf + jackets                                             */
/* ---------------------------------------------------------------- */
.shelf {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem; margin-top: 2.75rem;
    align-items: start;
}
.book {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; text-decoration: none; color: var(--ink);
}
.jacket {
    display: block; width: 220px; max-width: 100%;
    aspect-ratio: 2 / 3; overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-jacket);
    transition: transform .25s ease, box-shadow .25s ease;
}
.jacket img { width: 100%; height: 100%; object-fit: cover; }
.book:hover .jacket, .book:focus-visible .jacket {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(20, 20, 20, .3);
}
.book-title {
    display: block; margin-top: 1.35rem;
    font-family: var(--font-display); font-weight: 600;
    font-size: 1.12rem; line-height: 1.3;
}
.book:hover .book-title { color: var(--sage); }
.book-status {
    display: block; margin-top: .45rem;
    font-family: var(--font-label); font-weight: 500; font-size: .7rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--taupe);
}

/* Typographic placeholder jackets (Routledge band layout) */
.jacket-ph { display: flex; flex-direction: column; }
.ph-band {
    display: flex; flex-direction: column; gap: .6rem;
    background: var(--ink); padding: 1.05rem .95rem 1rem;
    text-align: left;
}
.ph-authors {
    font-family: var(--font-label); font-weight: 500; font-size: .57rem;
    letter-spacing: .09em; text-transform: uppercase;
    color: #a9a9a9; line-height: 1.55;
}
.ph-title {
    font-family: var(--font-label); font-weight: 800; font-size: 1.02rem;
    letter-spacing: .03em; text-transform: uppercase;
    color: #fff; line-height: 1.18;
}
.ph-body {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 1rem .95rem; text-align: center;
}
.ph-body em {
    font-family: var(--font-display); font-style: italic; font-weight: 500;
    font-size: .92rem; line-height: 1.45; color: var(--ink);
}
.ph-body-comedy {
    background: linear-gradient(135deg, rgba(232, 168, 124, .2), rgba(127, 181, 181, .2) 50%, rgba(184, 155, 196, .2)), #efece4;
}
.ph-body-perf {
    background: linear-gradient(135deg, rgba(184, 155, 196, .2), rgba(94, 125, 106, .2) 50%, rgba(232, 168, 124, .2)), #efece4;
}

@media (max-width: 880px) {
    .shelf { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------------------------------------------------------------- */
/* Photo band + CTA block                                           */
/* ---------------------------------------------------------------- */
.photo-band { position: relative; margin: .75rem 0 2.5rem; }
/* fixed 16:5 ratio matching the pre-cropped 1600x500 band images —
   identical framing at every viewport width, nothing left for
   object-fit to crop unpredictably */
.photo-band img { width: 100%; aspect-ratio: 16 / 5; height: auto; object-fit: cover; box-shadow: var(--shadow-card); }
/* warm-ink treatment unifying the section photography */
.photo-band img { filter: grayscale(.3) sepia(.22) saturate(.8) contrast(1.03) brightness(1.02); }
.photo-band::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(135deg, rgba(125, 106, 82, .18), rgba(20, 20, 20, .10));
    mix-blend-mode: multiply;
}

.cta-center { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.6rem; }

@media (prefers-reduced-motion: reduce) {
    .hero-jacket, .jacket, .btn, .btn-outline { transition: none; }
}

/* ---------------------------------------------------------------- */
/* Page header (interior pages)                                     */
/* ---------------------------------------------------------------- */
.page-header {
    max-width: var(--max-width); margin: 0 auto;
    padding: 3.75rem 1.5rem .5rem;
}
.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 580; letter-spacing: -.015em; line-height: 1.02;
    margin: .9rem 0 1.1rem;
}
.page-header .page-intro { max-width: 46rem; font-size: 1.05rem; }

@media (max-width: 880px) {
    .page-header { padding: 2.5rem 1.25rem .25rem; }
}

/* ---------------------------------------------------------------- */
/* Books gallery rows (publications page)                           */
/* ---------------------------------------------------------------- */
.book-row {
    display: grid; grid-template-columns: 220px 1fr;
    gap: 2.75rem; align-items: start;
    padding: 3rem 0;
}
.book-row:first-of-type { padding-top: 2.25rem; }
.book-row + .book-row { border-top: 1px solid var(--border); }
.book-row h3 { font-size: clamp(1.4rem, 2.8vw, 1.8rem); margin-bottom: .4rem; }
.book-row-authors {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.05rem; color: var(--taupe); margin-bottom: 1rem;
}
.book-row-blurb { max-width: 40rem; margin: 1.1rem 0 1.5rem; }
.status-pill {
    display: inline-block;
    font-family: var(--font-label); font-weight: 600; font-size: .7rem;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--sage); border: 1px solid var(--sage); border-radius: 999px;
    padding: .4em 1.1em;
}

@media (max-width: 880px) {
    .book-row { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.25rem 0; }
}

/* ---------------------------------------------------------------- */
/* Publication listings (cards)                                     */
/* ---------------------------------------------------------------- */
.pub-card { margin-top: 1.75rem; }
.pub-meta {
    font-family: var(--font-label); font-size: .78rem; font-weight: 500;
    letter-spacing: .04em; color: var(--taupe); margin-bottom: .55rem;
}

/* Linked publication rows — clickable cover/tile + text */
.pub-list { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.pub-item {
    display: grid; grid-template-columns: 96px 1fr; gap: 1.5rem;
    align-items: start;
    background: var(--card); padding: 1.4rem 1.6rem;
    border: 1px solid var(--border); box-shadow: var(--shadow-card);
    text-decoration: none; color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pub-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover, 0 10px 30px rgba(20,20,20,.14)); }
.pub-item h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: .35rem; }
.pub-item:hover h3 { color: var(--sage); }
.pub-item p { max-width: 46rem; }
.pub-thumb img {
    width: 96px; aspect-ratio: 2 / 3; object-fit: cover;
    box-shadow: 0 6px 16px rgba(20, 20, 20, .22);
}
.pub-cta {
    display: inline-block; margin-top: .6rem;
    font-family: var(--font-label); font-weight: 600; font-size: .76rem;
    letter-spacing: .1em; text-transform: uppercase; color: var(--sage);
}
.pub-cta::after { content: " \2192"; }

/* Typographic tiles for entries without cover art */
.pub-tile {
    width: 96px; aspect-ratio: 2 / 3;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: .55rem .6rem; background-color: #efece4;
    border: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(20, 20, 20, .14);
}
.tile-sage  { background-image: linear-gradient(135deg, rgba(94,125,106,.22), rgba(127,181,181,.16), rgba(232,168,124,.14)); }
.tile-peach { background-image: linear-gradient(135deg, rgba(232,168,124,.22), rgba(127,181,181,.14), rgba(184,155,196,.16)); }
.tile-teal  { background-image: linear-gradient(135deg, rgba(127,181,181,.22), rgba(94,125,106,.14), rgba(232,168,124,.16)); }
.tile-lilac { background-image: linear-gradient(135deg, rgba(184,155,196,.22), rgba(94,125,106,.14), rgba(127,181,181,.16)); }
.tile-letter {
    font-family: var(--font-display); font-style: italic; font-weight: 560;
    font-size: 2.1rem; line-height: 1; color: var(--taupe);
}
.tile-venue {
    font-family: var(--font-label); font-weight: 600; font-size: .5rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--taupe);
    line-height: 1.45;
}

@media (max-width: 880px) {
    .pub-item { grid-template-columns: 72px 1fr; gap: 1rem; padding: 1.15rem 1.2rem; }
    .pub-thumb img, .pub-tile { width: 72px; }
    .tile-letter { font-size: 1.6rem; }
}

/* ---------------------------------------------------------------- */
/* Contact page — testimonial pull-quotes, profiles, email, CV      */
/* ---------------------------------------------------------------- */
.testimonials { display: grid; gap: 3.5rem; margin-top: 2.75rem; }
.testimonial { position: relative; max-width: 52rem; padding-left: 3.4rem; }
/* oversized Fraunces quote mark in watercolor peach */
.testimonial::before {
    content: "\201C";
    position: absolute; left: 0; top: -1.15rem;
    font-family: var(--font-display); font-weight: 600; font-style: italic;
    font-size: 5.5rem; line-height: 1;
    color: var(--peach);
}
.testimonial blockquote p {
    font-family: var(--font-display); font-style: italic; font-weight: 480;
    font-size: clamp(1.18rem, 2.3vw, 1.5rem); line-height: 1.55;
    color: var(--ink);
}
.testimonial figcaption { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.35rem; }
/* watercolor accent rule before the attribution */
.testimonial figcaption::before {
    content: ""; flex: none; width: 2.75rem; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--sage), var(--teal), var(--lilac), var(--peach));
    opacity: .85;
}
.testimonial-name {
    display: block;
    font-family: var(--font-label); font-weight: 600; font-size: .8rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.testimonial-role {
    display: block;
    font-family: var(--font-label); font-weight: 400; font-size: .72rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--taupe);
}

.contact-email { margin: .5rem 0 1rem; }
.contact-email a {
    font-family: var(--font-display); font-style: italic; font-weight: 560;
    font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -.01em;
}

.profile-links { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }

.cv-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.cv-updated {
    margin-top: 1.4rem;
    font-family: var(--font-label); font-size: .72rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase; color: var(--taupe);
}

@media (max-width: 880px) {
    .testimonial { padding-left: 0; padding-top: 2.6rem; }
    .testimonial::before { top: -.5rem; font-size: 4.25rem; }
}

/* ---------------------------------------------------------------- */
/* Footer                                                           */
/* ---------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding: 2.25rem 1.5rem 2.75rem;
    text-align: center;
}
.site-footer p {
    font-family: var(--font-label); font-size: .8rem;
    letter-spacing: .05em; color: var(--taupe);
    margin-bottom: .9rem;
}
