
/* ============================ TOKENS ============================ */
:root {
    --ink: #0B0A08;
    --ink-soft: #141210;
    --bone: #FAF8F3;
    --bone-2: #F2EEE4;
    --bone-3: #ECE7DA;
    --gold: #C29B3C;
    --gold-soft: #D8B968;
    --muted: #5A554B;
    --muted-ink: #B9B2A4;
    --line: #E3DDD0;
    --line-ink: #2A2822;
    --maxw: 1180px;
    --gutter: 22px;
    --fs-body: 17px;
    --lh: 1.72;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 76px
}

body {
    background: var(--bone);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: var(--fs-body);
    line-height: var(--lh);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
}

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

h1,
h2,
h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -.01em
}

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

.section-pad {
    padding: 96px 0
}

.label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 20px
}

.on-ink {
    background: var(--ink);
    color: var(--bone)
}

.on-ink .label {
    color: var(--gold-soft)
}

.lead {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.7
}

.on-ink .lead {
    color: var(--muted-ink)
}

.sec-head {
    font-size: clamp(2rem, 5.2vw, 3.1rem);
    max-width: 22ch;
    margin-bottom: 14px
}

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

/* ============================ BUTTONS ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 2px;
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
    white-space: nowrap
}

.btn-primary {
    background: var(--gold);
    color: var(--ink)
}

.btn-primary:hover {
    background: var(--bone);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(194, 155, 60, .7)
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-ink)
}

.on-ink .btn-ghost {
    border-color: #4A473F;
    color: var(--bone)
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-2px)
}

 /* ============================ HEADER ============================ */
header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
    padding: 15px 0;
    background: var(--ink);
    
}

header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 var(--line-ink);
    padding: 12px 0;
    top : 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone);
    
}

.brand .mark {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--bone);
    object-fit: cover;
    padding: 2px
}

.brand .word {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--bone)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    color: var(--bone);
    font-size: 15px;
    font-weight: 500;
    opacity: .85;
    transition: opacity .2s, color .2s;
    position: relative
}

.nav-links a:not(.nav-box)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .25s var(--ease)
}

.nav-links a:not(.nav-box):hover {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-links a:not(.nav-box):hover::after {
    width: 100%
}

.nav-box {
    border: 1px solid var(--gold);
    border-radius: 2px;
    padding: 9px 18px;
    opacity: 1 !important;
    transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease)
}

.nav-box:hover {
    background: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-2px)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--bone);
    transition: .3s
}

.mobile-menu {
    display: none
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center
}

.nav-item>button {
    font-size: 15px;
    font-weight: 500;
    color: var(--bone);
    opacity: .85;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity .2s, color .2s;
    background:none;
    border: none;
}

.nav-item.has-drop>button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .25s
}

.nav-item.has-drop:hover>button {
    opacity: 1;
    color: var(--gold-soft)
}

.nav-item.has-drop:hover>button::after {
    transform: rotate(-135deg);
    margin-top: 2px
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: var(--ink);
    border: 1px solid var(--line-ink);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .75);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    z-index: 120
}

.nav-item.has-drop:hover .dropdown,
.nav-item.has-drop:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 5px;
    font-size: 14.5px;
    white-space: nowrap
}

.dropdown a::after {
    display: none !important
}

.dropdown a:hover {
    background: rgba(194, 155, 60, .12)
}

.mobile-menu .m-group {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--gold-soft);
    padding: 18px 0 4px
}

.mobile-menu .m-sub {
    display: block;
    color: var(--bone);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    padding: 11px 0 11px 20px;
    border-bottom: 1px solid var(--line-ink);
    opacity: .9
}

@media(max-width:759px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex;
        border:none;
        background: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--ink);
        z-index: 99;
        transform: translateY(-100%);
        transition: transform .4s var(--ease);
        padding: 90px 32px 32px;
        overflow: auto;
    }

    .mobile-menu.open {
        transform: translateY(0)
    }

    .mobile-menu a {
        display: block;
        color: var(--bone);
        font-family: 'Fraunces', serif;
        font-size: 1.6rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line-ink)
    }

    .urgbar{
        font-size: 12px;
    }

  
}



/* ============================ HERO ============================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 46px;
    text-align: center
}

.hero .halo {
    position: absolute;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    width: min(760px, 130vw);
    height: min(760px, 130vw);
    background: radial-gradient(circle, rgba(216, 185, 104, .26) 0%, rgba(194, 155, 60, .09) 36%, rgba(11, 10, 8, 0) 66%);
    filter: blur(14px);
    pointer-events: none;
    z-index: 0;
    animation: breathe 9s ease-in-out infinite
}

@keyframes breathe {

    0%,
    100% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.06)
    }
}

.hero .wrap {
    position: relative;
    z-index: 1
}

.hero .pill {
    background: rgba(250, 248, 243, .10);
    border: 1px solid rgba(217, 188, 114, .40);
    color: var(--gold-soft);
    padding: 9px 18px;
    border-radius: 100px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 26px
}

@media(max-width:560px) {
    .hero .pill {
        font-size: 9.5px;
        letter-spacing: .08em;
        padding: 7px 13px
    }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6.4rem);
    margin-bottom: 22px;
    letter-spacing: -.02em
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic
}

.hero .sub {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.25rem, 3.2vw, 1.95rem);
    color: var(--bone);
    max-width: 24ch;
    margin: 0 auto;
    line-height: 1.34;
    font-weight: 400
}

.hero .sub .dim {
    color: var(--muted-ink)
}

.hero .subnote {
    font-size: 15.5px;
    color: var(--muted-ink);
    margin: 22px auto 0;
    max-width: 52ch
}

/* ============================ COVERFLOW STAGE ============================ */
.stage-sec {
    background: var(--ink);
    color: var(--bone);
    padding: 10px 0 26px;
    position: relative;
    overflow: hidden
}

.cf {
    position: relative;
    height: 520px;
    perspective: 1500px;
    perspective-origin: 50% 46%;
    touch-action: pan-y;
    user-select: none
}

.cf-halo {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 640px;
    height: 640px;
    max-width: 130vw;
    max-height: 130vw;
    background: radial-gradient(circle, rgba(216, 185, 104, .30) 0%, rgba(194, 155, 60, .12) 34%, rgba(11, 10, 8, 0) 64%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
    animation: breathe 7s ease-in-out infinite
}

.cf-track {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    z-index: 1
}

.cf-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 334px;
    margin: -167px 0 0 -125px;
    transform-style: preserve-3d;
    transition: transform .82s var(--ease), opacity .82s var(--ease), filter .82s var(--ease);
    will-change: transform, opacity;
    cursor: pointer
}

.cf-card .inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #17150F, #0E0D0A);
    border: 1px solid var(--line-ink);
    display: flex;
    flex-direction: column;
    transition: border-color .5s var(--ease), box-shadow .6s var(--ease)
}

.cf-card.is-active .inner {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(194, 155, 60, .35), 0 30px 70px -28px rgba(194, 155, 60, .55), 0 0 90px -20px rgba(194, 155, 60, .35)
}

.cf-card .photo {
    flex: 1;
    position: relative;
    background: linear-gradient(150deg, #221F16, #0E0D0A);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.cf-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.25) contrast(1.03)
}

.cf-card.is-active .photo img {
    filter: none
}

.cf-card .mono {
    font-family: 'Fraunces', serif;
    font-size: 3.6rem;
    color: var(--gold);
    opacity: .72;
    letter-spacing: .02em
}

.cf-card .ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(11, 10, 8, .72);
    border: 1px solid rgba(194, 155, 60, .5);
    color: var(--gold-soft);
    padding: 5px 10px;
    border-radius: 100px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.cf-card .meta {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--line-ink);
    background: #0E0D0A
}

.cf-card .who {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px
}

.cf-card .init {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--bone)
}

.cf-card .flag {
    width: 25px;
    line-height: 1
}

.cf-card .diet {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-ink);
    margin-top: 8px
}

.cf-card .diet b {
    color: var(--gold);
    font-weight: 500
}

.cf-card .passed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--gold-soft)
}

.cf-card .passed svg {
    width: 13px;
    height: 13px;
    fill: var(--gold)
}

.cf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 6px
}

.cf-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid #3A372F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, background .25s, transform .25s;
    min-width:45px
}

.cf-arrow:hover {
    border-color: var(--gold);
    background: rgba(194, 155, 60, .1);
    transform: translateY(-2px)
}

.cf-arrow svg {
    width: 15px;
    height: 15px;
    stroke: var(--bone);
    stroke-width: 2;
    fill: none
}

.cf-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 340px
}

.cf-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3A372F;
    transition: background .3s, transform .3s, width .3s
}

.cf-dot.on {
    background: var(--gold);
    width: 20px;
    border-radius: 100px
}

.cf-hint {
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-ink);
    margin-top: 20px
}

/* ============================ SCROLLING WALL (2-row marquee) ============================ */
.wall {
    background: var(--bone);
    padding: 72px 0 80px
}

.wall-head {
    text-align: center;
    margin-bottom: 12px
}

.wall-head .sec-head {
    margin: 0 auto 14px;
    max-width: 32ch
}

.wall-head .lead {
    max-width: 56ch;
    margin: 0 auto
}

.wall-meta {
    text-align: center;
    margin-bottom: 36px
}

.wall-meta .countries {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.wall-meta .countries .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 32px
}

.filt {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 11px 20px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--muted);
    transition: all .25s var(--ease)
}

.filt:hover {
    border-color: var(--gold);
    color: var(--ink)
}

.filt.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-soft)
}

/* Marquee rows */
.marquee-container {
    overflow: hidden;
    position: relative;
    padding: 4px 0
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bone), transparent)
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--bone), transparent)
}

.marquee-row {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform
}

.marquee-row.scroll-left {
    animation: scrollL var(--dur, 80s) linear infinite
}

.marquee-row.scroll-right {
    animation: scrollR var(--dur, 80s) linear infinite
}

.marquee-row.paused {
    animation-play-state: paused
}

@keyframes scrollL {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scrollR {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.marquee-container+.marquee-container {
    margin-top: 16px
}

.mtile {
    flex: none;
    width: 140px;
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s
}

.mtile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 18px 36px -24px rgba(11, 10, 8, .4)
}

.mtile .ph {
    aspect-ratio: 1/1;
    background: linear-gradient(150deg, var(--bone-3), var(--bone-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.mtile .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mtile .ph .mono {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: .62
}

.mtile .ph .tag {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--gold-soft);
    padding: 3px 7px;
    border-radius: 100px
}

.mtile .tmeta {
    padding: 10px 11px 12px
}

.mtile .trow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px
}

.mtile .tinit {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    line-height: 1
}

.mtile .tflag {
    font-size: .85rem;
    width: 20px;
}

.mtile .tdiet {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px
}

.wall-note {
    text-align: center;
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 28px;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto
}

/* ============================ VIDEO FEEDBACK (P1 + P2) ============================ */
.vid-section {
    padding: 88px 0;
    position: relative;
    overflow: hidden
}

.vid-section.on-ink {
    border-top: 1px solid var(--line-ink)
}

.vid-section .halo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -30%);
    width: min(900px, 140vw);
    height: min(600px, 90vw);
    background: radial-gradient(ellipse, rgba(216, 185, 104, .14) 0%, rgba(11, 10, 8, 0) 66%);
    pointer-events: none
}

.vid-section .wrap {
    position: relative;
    z-index: 1
}

.vid-section .sec-head {
    margin-bottom: 14px
}

.vid-section .sec-head em {
    font-style: italic;
    color: var(--gold)
}

.vid-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px
}

.vcard {
    display: flex;
    flex-direction: column
}

.vhook {
    font-family: 'Fraunces', serif;
    font-size: 1.18rem;
    line-height: 1.34;
    margin-bottom: 12px;
    min-height: 2.5em
}

.vhook .before {
    color: var(--gold-soft);
    font-style: italic
}

.on-ink .vhook {
    color: var(--bone)
}

.lite {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0E0D0A center/cover no-repeat;
    cursor: pointer;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease)
}

.on-ink .lite {
    border-color: var(--line-ink)
}

.lite:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 26px 54px -30px rgba(194, 155, 60, .5)
}

.lite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 10, 8, .18), rgba(11, 10, 8, .68))
}

.lite .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease);
    z-index: 2
}

.lite:hover .play {
    transform: translate(-50%, -50%) scale(1.1)
}

.lite .play::after {
    content: "";
    margin-left: 5px;
    border-left: 17px solid var(--ink);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent
}

.lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.lite.playing::before,
.lite.playing .play,
.lite.playing .vcap {
    display: none
}

.lite.is-empty {
    background: repeating-linear-gradient(135deg, #F0EDE5, #F0EDE5 12px, #E8E4DB 12px, #E8E4DB 24px);
    cursor: default
}

.on-ink .lite.is-empty {
    background: repeating-linear-gradient(135deg, #141210, #141210 12px, #17150F 12px, #17150F 24px)
}

.lite.is-empty:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: none
}

.on-ink .lite.is-empty:hover {
    border-color: var(--line-ink)
}

.lite.is-empty .play {
    background: rgba(194, 155, 60, .22)
}

.lite.is-empty .play::after {
    border-left-color: rgba(216, 185, 104, .6)
}

.vslot {
    position: absolute;
    left: 50%;
    top: calc(50% + 48px);
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-soft);
    opacity: .75
}

.vcap {
    position: absolute;
    left: 14px;
    bottom: 12px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px
}

.vcap .vwho {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bone)
}

.vcap .vexam {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-soft)
}

.vfoot {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.on-ink .vfoot {
    color: var(--muted-ink)
}

.vfoot svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex: none
}

/* ============================ TRUSTPILOT ============================ */
.tp {
    background: var(--ink);
    color: var(--bone);
    border-top: 1px solid var(--line-ink);
    padding: 80px 0;
    text-align: center
}

.tp .label {
    margin-bottom: 14px
}

.tp-statement {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    line-height: 1.26;
    max-width: 28ch;
    margin: 0 auto 18px;
    font-weight: 500;
    color: var(--bone)
}

.tp-statement em {
    font-style: italic;
    color: var(--gold)
}

.tp-explain {
    font-size: 16px;
    color: var(--muted-ink);
    max-width: 48ch;
    margin: 0 auto 32px;
    line-height: 1.7
}

.tp-widget {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center
}

.tp-fallback {
    font-size: 15px;
    color: var(--muted-ink)
}

.tp-fallback a {
    color: var(--bone);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
    font-weight: 600
}

/* ============================ WHATSAPP / WRITTEN FEEDBACK ============================ */
.wa {
    background: var(--bone);
    padding: 88px 0;
    border-top: 1px solid var(--line)
}

.wa-head {
    max-width: 720px;
    margin-bottom: 44px
}

.wa-head .lead {
    max-width: 56ch
}

.wa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px
}

.wa-slot {
    background: var(--bone-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s
}

.wa-slot:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 24px 48px -30px rgba(11, 10, 8, .3)
}

.wa-slot img {
    width: 100%;
    height: auto;
    display: block
}

.wa-slot .placeholder-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 40px 20px;
    text-align: center
}

.wa-slot .wa-meta {
    padding: 14px 18px;
    width: 100%;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px
}

.wa-slot .wa-who {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.wa-slot .wa-exam {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold)
}

/* lightbox */
.lb {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(11, 10, 8, .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw
}

.lb.open {
    display: flex
}

.lb img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    border: 1px solid var(--line-ink)
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #3A372F;
    color: var(--bone);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, background .25s
}

.lb-close:hover {
    border-color: var(--gold);
    background: rgba(194, 155, 60, .12)
}

/* ============================ CTA ============================ */
.cta {
    background: var(--ink);
    color: var(--bone);
    padding: 92px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta .halo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 120vw);
    height: min(700px, 120vw);
    background: radial-gradient(circle, rgba(216, 185, 104, .20) 0%, rgba(11, 10, 8, 0) 62%);
    pointer-events: none;
    animation: breathe 9s ease-in-out infinite
}

.cta .wrap {
    position: relative;
    z-index: 1
}

.cta h2 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
    max-width: 22ch;
    margin: 0 auto 18px
}

.cta h2 em {
    font-style: italic;
    color: var(--gold)
}

.cta p {
    color: var(--muted-ink);
    max-width: 46ch;
    margin: 0 auto 34px;
    font-size: 17px
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

/* ============================ FOOTER ============================ */
.foot {
    background: var(--ink);
    color: var(--muted-ink);
    border-top: 1px solid var(--line-ink);
    padding: 40px 0;
    font-size: 14px;
    text-align: center
}

.foot .gold {
    color: var(--gold)
}

/* ============================ REVEAL ============================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

/* ============================ RESPONSIVE ============================ */
@media(min-width:640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center
    }

    .vid-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wa-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

    .wa-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:759px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--ink);
        z-index: 99;
        transform: translateY(-100%);
        transition: transform .4s var(--ease);
        padding: 90px 32px 32px
    }

    .mobile-menu.open {
        transform: translateY(0)
    }

    .mobile-menu a {
        display: block;
        color: var(--bone);
        font-family: 'Fraunces', serif;
        font-size: 1.6rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line-ink)
    }

    .hero {
        padding: 120px 0 30px
    }

    .cf {
        height: 400px
    }

    .cf-card {
        width: 186px;
        height: 252px;
        margin: -126px 0 0 -93px
    }

    .cf-card .mono {
        font-size: 2.6rem
    }

    .cf-card .init {
        font-size: 1.25rem
    }

    .cf-halo {
        width: 420px;
        height: 420px
    }

    .section-pad {
        padding: 68px 0
    }

    .wall {
        padding: 56px 0 64px
    }

    .vid-section {
        padding: 64px 0
    }

    .tp {
        padding: 60px 0
    }

    .wa {
        padding: 64px 0
    }

    .mtile {
        width: 120px
    }

    .mtile .ph .mono {
        font-size: 1.6rem
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important
    }

    .cf-card {
        transition: none
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .marquee-row {
        animation: none !important
    }
}

