/* =========================================================
   THEHOPESUP — HOME PAGE
   Rebuilt: one clean hero definition (no more conflicting
   duplicate blocks), scroll-reveal + hover animation, and
   a design pass across every section.
========================================================= */

:root {
    --bg: #faf6ef;
    --paper-dim: #f5efe6;
    --ink: #241f19;
    --ink-soft: #625b53;
    --ink-soft-2: #6c635a;
    --amber: #c8791f;
    --rule: #ddd4c8;
    --rule-2: #d4cabd;
    --rule-3: #d8cec1;
    --radius: 6px;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   SCROLL-REVEAL UTILITY
   (toggled by the IntersectionObserver script at the
   bottom of index.html)
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.75s; }


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 55px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-right: 10px;
}

.hero-eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);

    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.05s both;
}

.hero h1 {
    max-width: 680px;
    font-family: var(--serif);
    font-size: clamp(52px, 5.5vw, 82px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -3.5px;
    color: var(--ink);

    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero h1 span {
    display: inline;
    color: var(--amber);
}

.hero-lede {
    max-width: 670px;
    margin-top: 38px;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: var(--ink-soft);

    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;

    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.42s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 58px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-ink {
    background: var(--ink);
    color: #fff;
}

.btn-ink:hover {
    background: var(--amber);
    box-shadow: 0 10px 24px rgba(200, 121, 31, 0.28);
}

.btn-outline {
    border: 1px solid #cfc6ba;
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-light:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HERO IMAGE — single clean definition
========================================================= */

.hero-figure {
    position: relative;
    max-width: 480px;
    margin-left: auto;
}

.hero-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(36, 31, 25, 0.14);

    opacity: 0;
    animation:
        heroReveal 0.9s var(--ease) 0.2s both,
        heroFloat 6s ease-in-out 1.4s infinite;

    transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}

.hero-photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(36, 31, 25, 0.2);
}

/* =========================
   HERO IMAGE - BRIGHT & CLEAR
   ========================= */

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Brighten the image */
    filter: brightness(1.18) contrast(0.96) saturate(1.08);

    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Remove any dark overlay */
.hero-photo::before,
.hero-photo::after {
    opacity: 0 !important;
    background: transparent !important;
}

/* Keep image bright on hover */
.hero-photo:hover img {
    filter: brightness(1.22) contrast(0.96) saturate(1.1);
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}


/* Round stamp — locked to the top-right corner of the photo */

/* =========================================================
   HERO STAMP — TOP LEFT OF IMAGE
========================================================= */

/* =========================================================
   HERO STAMP — TOP RIGHT CORNER OF IMAGE
========================================================= */

/* =========================
   HERO STAMP — WHITE
   ========================= */

.hero-stamp {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 135px;
    height: 135px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    animation: stampFadeUp 0.8s var(--ease) 0.6s both;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.hero-stamp svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* Make stamp lines white */
.hero-stamp svg circle {
    stroke: #ffffff !important;
}

/* Make stamp text white */
.hero-stamp svg text {
    fill: #ffffff !important;
}

/* Keep the center dot orange */
.hero-stamp svg circle:last-child {
    fill: #c8791f !important;
    stroke: none !important;
}

/* Rotate only the outer stamp */
.hero-stamp svg {
    animation: stampRotate 28s linear infinite;
}

@keyframes stampFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.82);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stampRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 700px) {
    .hero-stamp {
        top: -25px;
        right: -20px;
        width: 145px;
        height: 145px;
    }
}

@media (max-width: 420px) {
    .hero-stamp {
        top: -20px;
        right: -14px;
        width: 135px;
        height: 135px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-stamp {
        top: -28px;
        right: -28px;

        width: 128px;
        height: 128px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero-stamp {
        /* Top-right corner */
        top: -25px;
        right: -20px;

        /* Larger and more visible on phone */
        width: 145px;
        height: 145px;

        filter:
            drop-shadow(
                0 14px 24px rgba(36, 31, 25, 0.16)
            );
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .hero-stamp {
        top: -20px;
        right: -14px;

        width: 135px;
        height: 135px;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 420px) {

    .hero-stamp {
        top: -18px;
        left: -12px;

        width: 135px;
        height: 135px;
    }

}
/* Caption card — bottom-right corner */

.hero-caption {
    position: absolute;
    right: -16px;
    bottom: -16px;
    width: 250px;
    min-height: 106px;
    padding: 20px 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(36, 31, 25, 0.14);
    border-radius: 3px;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.3;
    color: var(--ink);
    z-index: 8;

    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.72s both;
}

.hero-caption span {
    display: block;
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #746b61;
}


/* =========================================================
   STAT STRIP
========================================================= */

.stat-strip {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--paper-dim);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-row > div {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--rule);
    transition: background 0.3s ease;
}

.stat-row > div:hover {
    background: rgba(200, 121, 31, 0.05);
}

.stat-row > div:first-child {
    border-left: 1px solid var(--rule);
}

.stat-row strong {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    color: var(--amber);
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.stat-row > div:hover strong {
    transform: scale(1.08);
}

.stat-row small {
    max-width: 190px;
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.5;
    color: #6d655d;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 115px 0;
}


/* =========================================================
   MANIFESTO
========================================================= */

.manifesto {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 80px;
}

.manifesto-label {
    padding-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
}

.manifesto-body {
    max-width: 760px;
}

.manifesto-body h2 {
    margin-bottom: 35px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.5px;
}

.manifesto-body p {
    max-width: 720px;
    margin-bottom: 23px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.manifesto-body .drop:first-letter {
    font-family: var(--serif);
    font-size: 70px;
    float: left;
    margin: 8px 9px 0 0;
    line-height: 0.7;
    color: var(--amber);
}

.manifesto-signoff {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.manifesto-signoff:hover {
    color: var(--amber);
    border-color: var(--amber);
}

.manifesto-signoff svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s var(--ease);
}

.manifesto-signoff:hover svg {
    transform: translate(3px, -3px);
}


/* =========================================================
   FOCUS
========================================================= */

.focus {
    background: #f1eadf;
}

.focus-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 65px;
}

.focus-head h2 {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.field-note {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--amber);
}

.focus-head .field-note {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink-soft-2);
}

.focus-list {
    border-top: 1px solid var(--rule-2);
    counter-reset: focus-counter;
}

.focus-row {
    counter-increment: focus-counter;
    position: relative;

    display: grid;
    grid-template-columns: 65px 1fr 1.2fr 150px;
    align-items: center;
    gap: 30px;

    min-height: 155px;
    padding-left: 44px;

    border-bottom: 1px solid var(--rule-2);
    transition: background 0.3s ease;
}

.focus-row::before {
    content: counter(focus-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: 13px;
    color: var(--amber);
    opacity: 0.75;
}

.focus-row:hover {
    background: rgba(200, 121, 31, 0.05);
}

.focus-mark {
    width: 44px;
    height: 44px;
    transition: transform 0.35s var(--ease);
}

.focus-row:hover .focus-mark {
    transform: rotate(-6deg) scale(1.06);
}

.focus-row h3 {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.focus-row p {
    font-size: 14px;
    line-height: 1.7;
    color: #665e55;
}

.focus-row > a {
    justify-self: end;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.focus-row > a:hover {
    color: var(--amber);
    border-color: var(--amber);
    transform: translateX(3px);
}


/* =========================================================
   REMINDER
========================================================= */

.reminder {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.reminder-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.reminder-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(36, 31, 25, 0.9), rgba(36, 31, 25, 0.55), rgba(36, 31, 25, 0.2));
}

.reminder-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 8s ease;
}

.reminder:hover .reminder-bg img {
    transform: scale(1.14);
}

.reminder-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.reminder-inner h2 {
    max-width: 780px;
    margin-top: 20px;
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}

.reminder-inner p {
    max-width: 610px;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.reminder-inner .btn {
    margin-top: 35px;
}


/* =========================================================
   JOURNAL
========================================================= */

.journal-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.journal-head h2 {
    max-width: 650px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.entries {
    border-top: 1px solid var(--rule-3);
}

.entry {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 60px;
    padding: 35px 0;
    border-bottom: 1px solid var(--rule-3);
    transition: transform 0.4s var(--ease);
}

.entry:hover {
    transform: translateX(4px);
}

.entry-photo {
    height: 310px;
    overflow: hidden;
    border-radius: 3px;
}

.entry-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.entry:hover .entry-photo img {
    transform: scale(1.06);
}

.entry-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
}

.entry-date {
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
}

.entry-copy h3 {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
}

.entry-copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #665e55;
}

.entry-link {
    width: fit-content;
    margin-top: 25px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.entry-link:hover {
    color: var(--amber);
    border-color: var(--amber);
}


/* =========================================================
   PULL QUOTE
========================================================= */

.pull {
    position: relative;
    padding-top: 70px;
    padding-bottom: 130px;
    text-align: center;
}

.pull::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 220px;
    line-height: 1;
    color: var(--amber);
    opacity: 0.08;
    pointer-events: none;
}

.pull blockquote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}

.pull cite {
    display: block;
    margin-top: 30px;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
}


/* =========================================================
   FINAL CTA
========================================================= */

.finale {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--ink);
    color: #fff;
}

.finale-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    right: -150px;
    top: -250px;
    border-radius: 50%;
    background: rgba(200, 121, 31, 0.14);
    filter: blur(20px);
    animation: glowPulse 7s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.75; }
}

.finale-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.finale h2 {
    max-width: 800px;
    margin-top: 18px;
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}

.finale p {
    max-width: 600px;
    margin-top: 25px;
    color: #cfc6bc;
}

.finale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.finale-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.finale-outline:hover {
    background: #fff;
    color: var(--ink);
}

.finale-note {
    max-width: 260px;
    margin: 0 !important;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.4;
    color: #fff !important;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(100% - 50px, 900px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero {
        padding-top: 45px;
    }

    .hero-copy {
        max-width: 800px;
    }

    .hero-figure {
        max-width: 380px;
        margin: 0 auto;
    }

    .manifesto {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .focus-row {
        grid-template-columns: 55px 1fr;
        gap: 20px;
        padding: 30px 0 30px 40px;
    }

    .focus-row p {
        grid-column: 2;
    }

    .focus-row > a {
        grid-column: 2;
        justify-self: start;
    }

    .finale-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .finale-note {
        max-width: 450px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 36px);
    }

    .hero {
        padding: 35px 0 55px;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 64px);
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .hero-lede {
        margin-top: 25px;
        font-size: 16px;
    }

    .hero-actions {
        margin-top: 27px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-figure {
        max-width: 300px;
    }

    .hero-stamp {
        top: -14px;
        right: -14px;
        width: 90px;
        height: 90px;
    }

    .hero-caption {
        right: -8px;
        bottom: -14px;
        width: 200px;
        padding: 16px 18px;
        font-size: 16px;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-row > div {
        min-height: 115px;
        padding: 20px;
        border-bottom: 1px solid var(--rule);
    }

    .stat-row > div:nth-child(odd) {
        border-left: 1px solid var(--rule);
    }

    .stat-row strong {
        font-size: 30px;
    }

    .section {
        padding: 75px 0;
    }

    .manifesto-body h2 {
        font-size: 44px;
    }

    .focus-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .focus-row {
        grid-template-columns: 45px 1fr;
        padding-left: 34px;
    }

    .focus-row h3 {
        font-size: 24px;
    }

    .entry {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .entry-photo {
        height: 250px;
    }

    .entry-copy h3 {
        font-size: 30px;
    }

    .journal-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-head h2 {
        font-size: 44px;
    }

    .reminder {
        min-height: 550px;
    }

    .reminder-inner h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .pull::before {
        font-size: 140px;
    }

    .finale {
        padding: 80px 0;
    }

    .finale h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-figure {
        max-width: 250px;
    }

    .hero-stamp {
        width: 76px;
        height: 76px;
    }

    .hero-caption {
        width: 175px;
        font-size: 15px;
        padding: 14px 16px;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .stat-row > div {
        border-left: 1px solid var(--rule);
    }

    .focus-row {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .focus-row::before {
        position: static;
        display: block;
        margin-bottom: 8px;
        transform: none;
    }

    .focus-row p,
    .focus-row > a {
        grid-column: auto;
    }

    .focus-mark {
        margin-bottom: -5px;
    }

    .reminder-inner h2 {
        font-size: 40px;
    }

    .finale h2 {
        font-size: 40px;
    }
}


/* =========================================================
   THE HOPESUP — FOOTER
   Editorial / Creative Studio Footer
========================================================= */

.footer {
    position: relative;
    padding: 80px 0 28px;
    background: #211c18;
    color: #f7f1e8;
    overflow: hidden;
    font-family: var(--sans);
}

.footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -260px;
    right: -160px;
    border: 1px solid rgba(229, 182, 93, 0.10);
    border-radius: 50%;
}

.footer::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -180px;
    left: -100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.footer .container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 65px;
}

.footer-about {
    max-width: 330px;
}

.footer .mark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: #fffaf3;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .mark:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.mark-sun {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.footer .mark:hover .mark-sun {
    transform: rotate(15deg);
}

.mark-word {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1;
}

.mark-word em {
    color: #e5b65d;
    font-style: normal;
}

.footer-about > p {
    max-width: 310px;
    margin: 0;
    color: #bdb4aa;
    font-size: 14px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #d8d0c8;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
    color: #211c18;
    background: #e5b65d;
    border-color: #e5b65d;
    transform: translateY(-3px);
}

.footer-heading {
    position: relative;
    margin-bottom: 20px;
    color: #e5b65d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 9px;
    background: rgba(229, 182, 93, 0.55);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #c8c0b8;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -18px;
    color: #e5b65d;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-note {
    max-width: 220px;
    margin: 22px 0 0;
    color: #918980;
    font-size: 12px;
    line-height: 1.7;
}

.footer-links a[href^="mailto"] {
    color: #f0e8dd;
    font-size: 13px;
}

.footer-links a[href^="mailto"]:hover {
    color: #e5b65d;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #817970;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.footer-bottom span:last-child {
    color: #9b9188;
    font-style: italic;
}

@media (max-width: 900px) {
    .footer { padding-top: 65px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
    .footer-about { grid-column: 1 / -1; max-width: 500px; padding-bottom: 15px; }
    .footer-about > p { max-width: 450px; }
}

@media (max-width: 650px) {
    .footer { padding: 55px 0 24px; }
    .footer .container { width: calc(100% - 34px); }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px 25px; padding-bottom: 42px; }
    .footer-about { grid-column: 1 / -1; max-width: 100%; padding-bottom: 5px; }
    .footer-about > p { max-width: 100%; font-size: 13px; line-height: 1.75; }
    .footer .mark { margin-bottom: 18px; }
    .mark-sun { width: 36px; height: 36px; }
    .mark-word { font-size: 23px; }
    .footer-socials { margin-top: 22px; }
    .footer-socials a { width: 34px; height: 34px; }
    .footer-heading { margin-bottom: 17px; font-size: 9px; letter-spacing: 1.5px; }
    .footer-links { gap: 9px; }
    .footer-links a { font-size: 12px; }
    .footer-note { max-width: 180px; margin-top: 18px; font-size: 11px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; padding-top: 20px; font-size: 9px; }
}

@media (max-width: 420px) {
    .footer { padding-top: 48px; }
    .footer .container { width: calc(100% - 28px); }
    .footer-grid { gap: 32px 18px; }
    .mark-sun { width: 33px; height: 33px; }
    .mark-word { font-size: 21px; }
    .footer-about > p { font-size: 12px; }
    .footer-heading { font-size: 8px; letter-spacing: 1.3px; }
    .footer-links a { font-size: 11px; }
    .footer-note { font-size: 10px; }
    .footer-bottom { font-size: 8px; }
}

.footer a:focus-visible {
    outline: 2px solid #e5b65d;
    outline-offset: 4px;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    margin-top: 45px;
    border-top: 1px solid rgba(36, 31, 25, 0.14);
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    color: #6f665d;
}


/* =========================================================
   FOOTER BOTTOM RIGHT
========================================================= */

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}


/* =========================================================
   PRIVACY POLICY LINK
========================================================= */

.privacy-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    color: #241f19;
    background: #f4eadb;

    border: 1px solid rgba(200, 121, 31, 0.28);
    border-radius: 4px;

    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.04em;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Small arrow */

.privacy-link::after {
    content: "↗";

    margin-left: 7px;

    font-size: 12px;

    transition: transform 0.3s ease;
}


/* Hover */

.privacy-link:hover {

    color: #ffffff;
    background: #241f19;

    border-color: #241f19;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(36, 31, 25, 0.14);
}


.privacy-link:hover::after {
    transform: translate(2px, -2px);
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 700px) {

    .footer-bottom {

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        gap: 15px;

        margin-top: 35px;

    }


    .footer-bottom-right {

        flex-direction: column;

        gap: 12px;

    }


    .privacy-link {

        padding: 8px 14px;

    }

}