/* ============================ TOKENS ============================ */
:root {
    --ink: #0B0A08;
    --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
}

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)
}

.hero .label {
    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)
}

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

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

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

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

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

/* ============================ 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(--ink);
    color: var(--bone);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(11, 10, 8, .5)
}

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

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

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

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bone);
    transform: translateY(-2px)
}

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

.link-quiet {
    font-size: 15px;
    color: var(--muted-ink);
    border-bottom: 1px solid #3A372F;
    padding-bottom: 2px;
    transition: color .2s, border-color .2s
}

.link-quiet:hover {
    color: var(--gold);
    border-color: var(--gold)
}

.arrow-link {
    font-weight: 600;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 3px;
    transition: color .2s
}

.arrow-link:hover {
    color: var(--gold)
}

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

header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 var(--line-ink);
    padding: 12px 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
}

.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
}

/* ============================ HERO ============================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 110px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.halo {
    position: absolute;
    left: 50%;
    top: 44%;
    width: min(760px, 124vw);
    height: min(760px, 124vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    will-change: transform
}

.halo::before,
.halo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%
}

.halo::before {
    background: radial-gradient(circle, rgba(216, 185, 104, .36) 0%, rgba(194, 155, 60, .13) 38%, rgba(11, 10, 8, 0) 68%);
    filter: blur(16px);
    animation: halopulse 6.5s ease-in-out infinite
}

.halo::after {
    background: radial-gradient(circle, rgba(216, 185, 104, .22) 0%, rgba(194, 155, 60, 0) 60%);
    filter: blur(34px);
    animation: halopulse 9s ease-in-out infinite reverse
}

@keyframes halopulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.9)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }
}

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

.hero-center {
    max-width: 920px
}

.hero h1 {
    font-size: clamp(2.85rem, 8.4vw, 4.4rem);
    margin-bottom: 24px
}

.hero h1 .accent {
    color: var(--gold)
}

.hero .sub {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--muted-ink);
    max-width: 32ch;
    margin: 0 auto 36px;
    line-height: 1.6
}

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

.eyebrow-dots {
    color: var(--gold-soft)
}

/* video frame */
.vframe {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1A1810, #0B0A08);
    border: 1px solid var(--line-ink);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7)
}

.vframe .play {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease)
}

.vframe:hover .play {
    transform: scale(1.09)
}

.vframe .play::after {
    content: "";
    margin-left: 5px;
    border-left: 19px solid var(--ink);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent
}

.vframe .cap {
    position: absolute;
    bottom: 16px;
    left: 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--muted-ink);
    text-transform: uppercase
}

.vframe .name {
    position: absolute;
    top: 16px;
    left: 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--gold-soft);
    text-transform: uppercase
}

.cue-v {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--muted-ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase
}

.cue-v .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(var(--gold), rgba(194, 155, 60, 0));
    animation: cueV 2.4s ease-in-out infinite
}

@keyframes cueV {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(.7)
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

.video-sec {
    padding: 26px 0 96px
}

.video-note {
    text-align: center;
    color: var(--muted-ink);
    font-size: 14px;
    margin-top: 20px
}

/* ============================ 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
}

.d4 {
    transition-delay: .32s
}

/* ============================ TRUST STRIP ============================ */
.trust {
    padding: 60px 0;
    border-bottom: 1px solid var(--line)
}

.stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 8px
}

.stars svg {
    width: 22px;
    height: 22px;
    fill: var(--gold)
}

.trust-top {
    text-align: center;
    margin-bottom: 44px
}

.trust-top .r {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem
}

.trust-top .r b {
    color: var(--ink)
}

.trust-top .r span {
    color: var(--muted)
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px
}

.stat {
    text-align: center
}

.stat .num {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5.5vw, 2.9rem);
    line-height: 1;
    transition: transform .15s ease-out
}

.stat .num .u {
    color: var(--gold)
}

.stat .cap .chan {
    display: inline-block;
    margin-top: 5px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap
}

.stat .cap {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5
}

.tp-slot {
    margin-top: 40px;
    border: 1px dashed var(--line);
    border-radius: 4px;
    padding: 14px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .04em
}

.batchbox {
    display: inline-block;
    margin-top: 26px;
    background: var(--bone-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: left;
    max-width: 560px;
    width: 100%
}

.bb-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px
}

.bb-row {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2px 14px;
    align-items: baseline;
    padding: 12px 0;
    border-top: 1px solid var(--line)
}

.bb-row b {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 500
}

.bb-diet {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .03em
}

.bb-info {
    grid-column: 1/-1;
    font-size: 14px;
    color: var(--muted)
}

.bb-info.gold {
    color: var(--gold);
    font-weight: 600
}

.batchbox .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3FA65A;
    position: relative
}

.batchbox .dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #3FA65A;
    animation: pulse 2s ease-out infinite
}

@keyframes pulse {
    0% {
        opacity: .7;
        transform: scale(.6)
    }

    100% {
        opacity: 0;
        transform: scale(1.6)
    }
}

/* ============================ PROBLEM + DONUT ============================ */
.problem h2 {
    max-width: 26ch
}

.prob-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 52px;
    align-items: center
}

.donut-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.donut {
    width: min(340px, 86vw);
    height: min(340px, 86vw);
    transition: transform .2s ease-out
}

.donut circle {
    fill: none;
    stroke-width: 26;
    transition: stroke-width .3s var(--ease), opacity .3s
}

.donut .seg {
    cursor: pointer
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    width: 52%
}

.donut-center .dc-pct {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1
}

.donut-center .dc-lab {
    font-size: 12.5px;
    color: var(--muted-ink);
    margin-top: 6px;
    line-height: 1.4
}

.credit {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .05em;
    color: var(--muted-ink);
    margin-top: 22px;
    text-align: center;
    max-width: 34ch
}

.prob-list {
    display: grid;
    gap: 2px
}

.prob-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 6px;
    border-bottom: 1px solid var(--line-ink);
    cursor: default;
    transition: background .25s
}

.prob-row:hover,
.prob-row.active {
    background: rgba(194, 155, 60, .06)
}

.prob-row .sw {
    width: 12px;
    height: 12px;
    border-radius: 3px
}

.prob-row .q {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    color: var(--bone)
}

.prob-row .sub {
    font-size: 13px;
    color: var(--muted-ink);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: 3px
}

.prob-row .pct {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--gold)
}

/* ============================ PILLARS ============================ */
.pillars h2 {
    max-width: 20ch
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 48px
}

.pillar {
    background: var(--bone);
    padding: 34px 28px;
    transition: background .3s
}

.pillar:hover {
    background: var(--bone-2)
}

.pillar .pn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .14em
}

.pillar h3 {
    font-size: 1.45rem;
    margin: 14px 0 12px
}

.pillar p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6
}

/* ============================ WEEK (hover-expand) ============================ */
.week {
    background: var(--ink);
    color: var(--bone)
}

.week h2 {
    max-width: 20ch
}

.week-row {
    display: flex;
    gap: 14px;
    margin-top: 48px;
    min-height: 340px
}

.day {
    flex: 1;
    position: relative;
    background-position: center;
    background-size: cover;
    border: 1px solid var(--line-ink);
    border-radius: 8px;
    padding: 28px 24px;
    overflow: hidden;
    transition: flex .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer
}

.week-row:hover .day {
    flex: .7
}

.week-row .day:hover {
    flex: 3;
    background: linear-gradient(180deg, rgba(194, 155, 60, .10), #111009);
    border-color: var(--gold);
    background-position: center;
    background-size: cover;
}

.day .dtag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px
}

.day h3 {
    font-size: 1.5rem;
    line-height: 1.1
}

.day .detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), opacity .4s var(--ease) .1s;
    color: var(--muted-ink);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0
}

.week-row .day:hover .detail {
    max-height: 200px;
    opacity: 1;
    margin-top: 14px
}

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

/* recordings box */
.recbox {
    margin-top: 36px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 30px 32px;
    background: linear-gradient(180deg, rgba(194, 155, 60, .07), rgba(17, 16, 9, 0));
    display: flex;
    gap: 22px;
    align-items: flex-start
}

.recbox .ic {
    font-size: 26px;
    color: var(--gold);
    line-height: 1
}

.recbox h3 {
    font-size: 1.35rem;
    margin-bottom: 8px
}

.recbox p {
    color: var(--muted-ink);
    font-size: 16px;
    max-width: 60ch
}

/* ============================ QBANK TABLE ============================ */
.versus {
    background: var(--bone-2)
}

.versus h2 {
    max-width: 20ch
}

.vtable {
    margin-top: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bone)
}

.vhead,
.vrow {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr
}

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

.vhead div {
    padding: 20px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.vhead .im {
    color: var(--gold)
}

.vrow {
    border-top: 1px solid var(--line);
    transition: background .25s
}

.vrow>div {
    padding: 22px 24px;
    font-size: 15.5px;
    display: flex;
    align-items: center
}

.vrow .rk {
    font-weight: 600
}

.vrow .qb {
    color: var(--muted)
}

.vrow .im {
    background: linear-gradient(180deg, rgba(194, 155, 60, .05), rgba(194, 155, 60, .02));
    color: var(--ink);
    font-weight: 500;
    position: relative;
    transition: background .25s, transform .25s
}

.vrow:hover {
    background: var(--bone-2)
}

.vrow:hover .qb {
    opacity: .5
}

.vrow:hover .im {
    background: rgba(194, 155, 60, .16)
}

.vrow .im::before {
    content: "✓";
    color: var(--gold);
    margin-right: 12px;
    font-weight: 700
}



/* =========================================
   VTABLE - MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .vtable {
        margin-top: 28px;
        border-radius: 7px;
        overflow: hidden;
    }

    /* Hide desktop table header */
    .vhead {
        display: none;
    }

    /* Each row becomes a card */
    .vrow {
        display: block;
        padding: 0;
        border-top: 1px solid var(--line);
    }

    .vrow:first-of-type {
        border-top: 0;
    }

    .vrow > div {
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    /* Question / comparison title */
    .vrow .rk {
        background: var(--ink);
        color: var(--bone);
        font-size: 11px;
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 10px 16px;
    }

    /* Q-bank content */
    .vrow .qb {
        color: var(--muted);
        background: var(--bone);
        padding: 13px 16px 13px 16px;
    }

    .vrow .qb::before {
        content: "Q-Bank Subscription";
        display: block;
        margin-bottom: 4px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
        opacity: .7;
    }

    /* Intellect Medicos */
    .vrow .im {
        padding: 14px 16px;
        background: rgba(194, 155, 60, .08);
        color: var(--ink);
        font-weight: 500;
    }

    .vrow .im::before {
        content: "✓";
        color: var(--gold);
        margin-right: 8px;
        font-weight: 700;
    }

    .vrow .im::after {
        content: " Intellect Medicos";
        display: block;
        margin-top: -20px;
        margin-left: 22px;
        margin-bottom: 5px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--gold);
        display: none;
    }

    /* Disable desktop hover effects on mobile */
    .vrow:hover {
        background: transparent;
    }

    .vrow:hover .qb {
        opacity: 1;
    }

    .vrow:hover .im {
        background: rgba(194, 155, 60, .08);
    }

    .tutor .info {
    padding: 20px 15px 24px!important;
}
.pcard.feature{
        padding: 34px 15px !important;
}
.up{
    padding: 30px 15px !important;
}
.step{
        padding: 18px 12px!important;
}
}
/* ============================ TUTORS ============================ */
.tutors h2 {
    max-width: 20ch
}

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

.tutor {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.tutor:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -30px rgba(11, 10, 8, .4)
}

.tutor .photo {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bone-3), var(--bone-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.tutor .photo .mono {
    font-family: 'Fraunces', serif;
    font-size: 3.4rem;
    color: var(--gold);
    opacity: .5
}

.tutor .photo .ph {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .08em
}

.tutor .info {
    padding: 30px 30px 34px
}

.tutor .creds {
    font-size: 13.5px;
    color: var(--muted);
    margin: 8px 0 12px;
    line-height: 1.55
}

.tutor .info h3 {
    font-size: 1.6rem
}

.tutor .info .role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .06em;
    margin: 8px 0 16px
}

.tutor .info p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65
}

/* ============================ WALL OF FAME ============================ */
.wall {
    background: var(--ink);
    color: var(--bone);
    padding: 96px 0;
    overflow: hidden
}

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

.wall-head h2 {
    font-size: clamp(2.2rem, 6vw, 3.4rem)
}

.wall-head .next {
    color: var(--gold);
    font-style: italic
}

.marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollL 46s linear infinite
}

.marquee.rev {
    animation: scrollR 46s linear infinite;
    margin-top: 20px
}

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

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

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

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

    to {
        transform: translateX(0)
    }
}

.fame {
    width: 210px;
    flex: none;
    background: #111009;
    border: 1px solid var(--line-ink);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .3s, transform .3s
}

.fame:hover {
    border-color: var(--gold);
    transform: translateY(-4px)
}

.fame .pic {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1A1810, #0B0A08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A372F;
    font-family: 'Fraunces', serif;
    font-size: 2rem
}

.fame .meta {
    padding: 16px 18px
}

.fame .meta b {
    font-size: 15px;
    display: block;
    color: var(--bone)
}

.fame .meta span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--gold-soft);
    letter-spacing: .04em
}

.wall-cta {
    text-align: center;
    margin-top: 52px
}

/* ============================ PRICING ============================ */
.pricing {
    background: var(--bone)
}

.price-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: end;
    margin-bottom: 44px
}

.pricing h2 {
    max-width: 16ch
}

.urgency {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 24px;
    background: var(--bone-2)
}

.count-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px
}

.count {
    display: flex;
    gap: 10px
}

.count .box {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 10px 0;
    flex: 1;
    text-align: center
}

.count .box b {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    display: block;
    line-height: 1
}

.count .box span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted)
}

.seats {
    margin-top: 16px
}

.seats .bar {
    height: 7px;
    border-radius: 100px;
    background: var(--bone-3);
    overflow: hidden;
    margin-bottom: 9px
}

.seats .bar i {
    display: block;
    height: 100%;
    background: var(--gold);
    width: 0;
    transition: width 1.1s var(--ease)
}

.seats .txt {
    font-size: 13.5px;
    color: var(--muted)
}

.seats .txt b {
    color: var(--ink)
}

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

.pcard {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 34px 32px;
    background: var(--bone);
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -30px rgba(11, 10, 8, .35)
}

.pcard.feature {
    border-color: var(--gold)
}

.pcard .badge {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    font-weight: 500
}

.pcard .ptag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold)
}

.pcard h3 {
    font-size: 1.9rem;
    margin: 12px 0 6px
}

.pcard .meta {
    color: var(--muted);
    font-size: 13.5px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .03em;
    margin-bottom: 22px
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line)
}

.price-now {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    line-height: 1
}

.price-now .cur {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--gold)
}

.price-was {
    color: var(--muted)
}

.price-was s {
    opacity: .7
}

.access-hl {
    margin: 18px 0 6px;
    padding: 14px 18px;
    border: 1px solid var(--gold);
    border-left: 3px solid var(--gold);
    background: rgba(194, 155, 60, .07);
    border-radius: 3px;
    font-size: 14.5px;
    line-height: 1.55;
    transition: background .25s, box-shadow .25s, transform .25s
}

.access-hl b {
    color: var(--gold)
}

.access-hl:hover {
    background: rgba(194, 155, 60, .14);
    box-shadow: 0 8px 22px -14px rgba(194, 155, 60, .55);
    transform: translateY(-2px)
}

.eb {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase
}

.plist {
    list-style: none;
    margin: 24px 0;
    display: grid;
    gap: 13px
}

.plist li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    line-height: 1.45
}

.plist li .tk {
    color: var(--gold);
    flex: none
}

.pcard .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px
}

/* IMT budget box */
.imt {
    background: var(--bone-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.imt-box {
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    background: var(--bone)
}

.imt-box .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold)
}

.imt-box p {
    font-size: 16px;
    color: var(--ink);
    max-width: 70ch
}

/* ============================ EVENTS ============================ */
.events h2 {
    max-width: 16ch
}

.ev-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px
}

.ev {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 30px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.ev:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -28px rgba(11, 10, 8, .35)
}

.ev .evtag {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
    margin-bottom: 20px
}

.ev .evtag.paid {
    background: var(--gold);
    color: var(--ink)
}

.ev .evtag.free {
    border: 1px solid var(--ink);
    color: var(--ink)
}

.ev h3 {
    font-size: 1.4rem;
    line-height: 1.15
}

.ev .when {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--muted);
    margin: 10px 0 16px;
    letter-spacing: .02em
}

.ev p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px
}

.ev-foot {
    margin-top: 36px;
    text-align: center;
    color: var(--muted);
    font-size: 15px
}

/* ============================ UPCOMING ============================ */
.upcoming {
    background: var(--ink);
    color: var(--bone)
}

.up-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 44px
}

.up {
    border: 1px solid var(--line-ink);
    border-radius: 12px;
    padding: 34px 32px;
    background: #111009
}

.up h3 {
    font-size: 2rem;
    margin-bottom: 12px
}

.up h3 .soon {
    color: var(--gold);
    font-style: italic
}

.up p {
    color: var(--muted-ink);
    font-size: 15.5px;
    max-width: 50ch;
    margin-bottom: 26px
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line-ink);
    border: 1px solid var(--line-ink);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 26px
}

.step {
    background: #0F0E08;
    padding: 18px 20px
}

.step .st {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.step.done .st {
    color: var(--gold)
}

.step.prog .st {
    color: var(--gold-soft)
}

.step.next .st,
.step.soon .st {
    color: #6E6656
}

.step b {
    font-size: 15px
}

.wait {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.wait input {
    flex: 1;
    min-width: 200px;
    padding: 14px 16px;
    background: #0B0A08;
    border: 1px solid var(--line-ink);
    border-radius: 4px;
    color: var(--bone);
    font-size: 15px
}

.wait input:focus {
    outline: none;
    border-color: var(--gold)
}

/* ============================ FAQ ============================ */
.faq-list {
    margin-top: 44px;
    border-top: 1px solid var(--line)
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 26px 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    font-weight: 500
}

.faq-q .ic {
    min-width: 22px;
    height: 22px;
    position: relative
}

.faq-q .ic::before,
.faq-q .ic::after {
    content: "";
    position: absolute;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transition: opacity .3s
}

.faq-q .ic::before {
    width: 16px;
    height: 1.5px;
    transform: translate(-50%, -50%)
}

.faq-q .ic::after {
    width: 1.5px;
    height: 16px;
    transform: translate(-50%, -50%)
}

.faq-item.open .ic::after {
    opacity: 0
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease)
}

.faq-a p {
    padding: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 64ch
}

/* ============================ FINAL ============================ */
.final {
    background: var(--ink);
    color: var(--bone);
    text-align: center;
    padding: 104px 0
}

.final h2 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    max-width: 16ch;
    margin: 0 auto 18px
}

.final .lead {
    margin: 0 auto 38px;
    text-align: center
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto
}

.final-form {
    max-width: 460px;
    margin: 44px auto 0;
    text-align: left;
    display: none
}

.final-form.show {
    display: block
}

.final-form label {
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-ink);
    display: block;
    margin: 16px 0 8px
}

.final-form input {
    width: 100%;
    padding: 14px 16px;
    background: #111009;
    border: 1px solid var(--line-ink);
    border-radius: 4px;
    color: var(--bone);
    font-size: 16px
}

.final-form input:focus {
    outline: none;
    border-color: var(--gold)
}

.final-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 24px
}

.form-note {
    font-size: 13px;
    color: var(--muted-ink);
    margin-top: 16px;
    text-align: center
}

.foot {
    background: var(--ink);
    color: var(--muted-ink);
    border-top: 1px solid var(--line-ink);
    padding: 38px 0;
    text-align: center;
    font-size: 13px
}

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

/* ============================ RESPONSIVE ============================ */
@media(min-width:760px) {
    :root {
        --fs-body: 18px;
        --gutter: 32px
    }

    .stats {
        grid-template-columns: repeat(4, 1fr)
    }

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

    .tutor {
        grid-template-columns: 1fr 1.2fr
    }

    .tutor .photo {
        aspect-ratio: auto
    }

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

    .up-grid {
        grid-template-columns: 1fr 1fr
    }

    .price-grid {
        grid-template-columns: 1fr 1fr
    }

    .price-top {
        grid-template-columns: 1.4fr 1fr
    }

    .imt-box {
        grid-template-columns: auto 1fr;
        gap: 26px
    }

    .final-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center
    }
}

@media(min-width:980px) {
    .prob-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 64px
    }
}

@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;
        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)
    }

    .week-row {
        flex-direction: column;
        min-height: 0
    }

    .week-row .day,
    .week-row:hover .day,
    .week-row .day:hover {
        flex: none;
        padding: 20px 20px;

    }

    .recbox{
            padding: 30px 20px;
    }

    .day .detail {
        max-height: 200px;
        opacity: 1;
        margin-top: 14px
    }

    .day {
        border-color: var(--gold)
    }

    .vtable {
        font-size: 14px
    }

    .vhead div,
    .vrow>div {
        padding: 16px 14px
    }

    .section-pad {
    padding: 80px 0
}
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .marquee {
        width: 100%;
        overflow-x: auto
    }
}

.vframe iframe{
    width: 100%;
    height: 100%;
}


/* =========================================================
   INTELLECT MEDICOS
   ABOUT PAGE
   PURE CSS
========================================================= */


/* =========================================================
   CONTAINER
========================================================= */

.im-about-container {
    width: 100%;
    max-width: var(--maxw);

    margin: 0 auto;

    padding-left: var(--gutter);
    padding-right: var(--gutter);
}


/* =========================================================
   MAIN
========================================================= */

.im-about-page {
    width: 100%;

    background: var(--ink);

    color: var(--bone);

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.im-about-page *,
.im-about-page *::before,
.im-about-page *::after {
    box-sizing: border-box;
}


.im-about-page p {
    margin-top: 0;
}


.im-section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-soft);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 2px;
}


/* =========================================================
   HERO
========================================================= */

.im-about-hero {
    position: relative;

    padding: 100px 0 90px;

    border-bottom: 1px solid var(--line-ink);
}


.im-about-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -280px;
    top: -260px;

    border: 1px solid rgba(194, 155, 60, .12);

    border-radius: 50%;

    pointer-events: none;
}


.im-about-hero-grid {
    position: relative;

    display: grid;

    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);

    align-items: center;

    gap: 70px;
}


.im-about-kicker {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--gold-soft);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.im-about-kicker span {
    width: 34px;
    height: 1px;

    background: var(--gold);

    flex-shrink: 0;
}


.im-about-hero-content h1 {
    max-width: 720px;

    margin: 0 0 24px;

    color: var(--bone);

    font-size: clamp(48px, 5.5vw, 76px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -2.5px;
}


.im-about-hero-content h1 em {
    color: var(--gold-soft);

    font-family: Georgia, serif;

    font-weight: 400;
}


.im-about-hero-content > p {
    max-width: 620px;

    margin-bottom: 30px;

    color: var(--muted-ink);

    font-size: 16px;

    line-height: 1.8;
}


.im-about-hero-content > p strong {
    color: var(--bone);
}


.im-about-hero-actions {
    display: flex;

    align-items: center;

    gap: 22px;
}


.im-about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 13px 20px;

    border: 1px solid var(--gold);

    color: var(--bone);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}


.im-about-btn:hover {
    background: var(--gold);

    color: var(--ink);
}


.im-about-btn i {
    font-size: 11px;
}


.im-about-scroll-note {
    color: var(--muted-ink);

    font-size: 11px;

    letter-spacing: 1px;
}


/* HERO IMAGE */

.im-about-hero-visual {
    position: relative;
}


.im-about-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.im-about-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(11, 10, 8, .65)
    );

    pointer-events: none;
}


.im-about-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s var(--ease);
}


.im-about-hero-image:hover img {
    transform: scale(1.04);
}


.im-about-hero-label {
    position: absolute;

    left: -25px;
    bottom: 25px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 18px;

    background: var(--bone);

    color: var(--ink);
}


.im-about-hero-label > span {
    color: var(--gold);

    font-size: 20px;

    line-height: 1;

    font-weight: 600;
}


.im-about-hero-label strong,
.im-about-hero-label small {
    display: block;
}


.im-about-hero-label strong {
    font-size: 12px;
    line-height: 1.3;
}


.im-about-hero-label small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================================
   STORY
========================================================= */

.im-about-story {
    padding: 110px 0;
}


.im-story-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


.im-story-visual {
    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}


.im-story-image {
    width: 100%;
    height: 560px;

    overflow: hidden;

    border: 1px solid var(--line-ink);
}


.im-story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.im-story-floating {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;

    flex-direction: column;

    padding: 20px 25px;

    background: var(--gold);

    color: var(--ink);
}


.im-story-floating strong {
    font-size: 30px;

    line-height: 1;

    font-weight: 700;
}


.im-story-floating span {
    margin-top: 6px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .5px;
}


.im-story-content h2 {
    max-width: 550px;

    margin: 0 0 20px;

    color: var(--bone);

    font-size: 46px;

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.im-story-content h2 span {
    display: block;

    color: var(--gold-soft);
}


.im-story-content > p {
    max-width: 590px;

    margin-bottom: 15px;

    color: var(--muted-ink);

    font-size: 15px;

    line-height: 1.8;
}


.im-story-content > p strong {
    color: var(--bone);
}


/* STORY POINTS */

.im-story-points {
    margin-top: 30px;

    border-top: 1px solid var(--line-ink);
}


.im-story-point {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 14px 0;

    border-bottom: 1px solid var(--line-ink);
}


.im-story-point > span {
    color: var(--gold);

    font-size: 11px;

    font-weight: 700;
}


.im-story-point strong,
.im-story-point small {
    display: block;
}


.im-story-point strong {
    color: var(--bone);

    font-size: 13px;

    line-height: 1.3;
}


.im-story-point small {
    margin-top: 3px;

    color: var(--muted-ink);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   STATS
========================================================= */

.im-about-stats {
    padding-bottom: 105px;
}


.im-stats-wrap {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 27px 0;

    border-top: 1px solid var(--line-ink);

    border-bottom: 1px solid var(--line-ink);
}


.im-stat-item {
    flex: 1;

    text-align: center;
}


.im-stat-item strong {
    display: block;

    color: var(--gold-soft);

    font-size: 34px;

    font-weight: 500;

    line-height: 1;
}


.im-stat-item span {
    display: block;

    margin-top: 8px;

    color: var(--muted-ink);

    font-size: 11px;

    line-height: 1.4;

    letter-spacing: .5px;
}


.im-stat-line {
    width: 1px;
    height: 42px;

    flex-shrink: 0;

    background: var(--line-ink);
}


/* =========================================================
   LEARNING SECTION
========================================================= */

.im-learning-section {
    padding: 105px 0;

    background: #0E0D0A;

    border-top: 1px solid var(--line-ink);

    border-bottom: 1px solid var(--line-ink);
}


.im-learning-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.im-learning-heading h2 {
    margin: 0;

    font-size: 46px;

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.im-learning-heading h2 span {
    color: var(--gold-soft);
}


.im-learning-heading > p {
    max-width: 420px;

    margin: 0;

    color: var(--muted-ink);

    font-size: 14px;

    line-height: 1.75;
}


/* LEARNING GRID */

.im-learning-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;
}


.im-learning-card {
    position: relative;

    min-height: 300px;

    padding: 25px;

    background: var(--ink);

    border: 1px solid var(--line-ink);

    transition: .35s var(--ease);
}


.im-learning-card:hover {
    border-color: var(--gold);

    transform: translateY(-5px);
}


.im-learning-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #4B473F;

    font-size: 11px;

    font-weight: 700;
}


.im-learning-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border: 1px solid var(--line-ink);

    color: var(--gold);

    font-size: 17px;
}


.im-learning-card h3 {
    max-width: 180px;

    margin: 0 0 13px;

    color: var(--bone);

    font-size: 20px;

    font-weight: 500;

    line-height: 1.2;
}


.im-learning-card p {
    margin: 0;

    color: var(--muted-ink);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   COURSE PROMISE
========================================================= */

.im-course-promise {
    padding: 105px 0;
}


.im-course-promise-box {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;

    border: 1px solid var(--line-ink);
}


.im-course-promise-content {
    padding: 55px;
}


.im-course-promise-content h2 {
    margin: 0 0 18px;

    font-size: 43px;

    font-weight: 500;

    line-height: 1.1;
}


.im-course-promise-content h2 span {
    color: var(--gold-soft);
}


.im-course-promise-content > p {
    max-width: 650px;

    color: var(--muted-ink);

    font-size: 15px;

    line-height: 1.8;
}


.im-course-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px 30px;

    margin-top: 30px;
}


.im-course-features div {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: var(--muted-ink);

    font-size: 12px;

    line-height: 1.6;
}


.im-course-features i {
    margin-top: 3px;

    color: var(--gold);

    font-size: 11px;
}


/* SIDE */

.im-course-promise-side {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;

    background: var(--gold);

    color: var(--ink);
}


.im-course-promise-side > span {
    margin-bottom: 15px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.im-course-promise-side > strong {
    font-size: 38px;

    font-weight: 600;

    line-height: 1;
}


.im-course-promise-side > small {
    max-width: 180px;

    margin-top: 15px;

    font-size: 11px;

    line-height: 1.6;
}


.im-promise-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(11, 10, 8, .3);

    font-size: 11px;
}


/* =========================================================
   FOUNDER
========================================================= */

.im-founder-section {
    padding: 105px 0;

    background: #0E0D0A;

    border-top: 1px solid var(--line-ink);

    border-bottom: 1px solid var(--line-ink);
}


.im-founder-grid {
    display: grid;

    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);

    align-items: center;

    gap: 80px;
}


.im-founder-image-wrap {
    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}


.im-founder-image {
    width: 100%;
    height: 620px;

    overflow: hidden;

    border: 1px solid var(--line-ink);
}


.im-founder-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.im-founder-tag {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;

    flex-direction: column;

    padding: 18px 22px;

    background: var(--gold);

    color: var(--ink);
}


.im-founder-tag span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.im-founder-tag strong {
    margin-top: 4px;

    font-size: 12px;
}


.im-founder-content h2 {
    margin: 0;

    font-size: 55px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: -2px;
}


.im-founder-content h2 span {
    color: var(--gold-soft);
}


.im-founder-role {
    margin: 10px 0 25px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


.im-founder-content > p {
    max-width: 620px;

    margin-bottom: 14px;

    color: var(--muted-ink);

    font-size: 14px;

    line-height: 1.8;
}


.im-founder-content > p strong {
    color: var(--bone);
}


/* BOOK */

.im-founder-book {
    display: flex;

    align-items: center;

    gap: 14px;

    max-width: 400px;

    margin-top: 28px;

    padding: 16px;

    border: 1px solid var(--line-ink);
}


.im-book-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--gold);

    color: var(--ink);

    font-size: 17px;
}


.im-founder-book span,
.im-founder-book strong {
    display: block;
}


.im-founder-book span {
    margin-bottom: 3px;

    color: var(--muted-ink);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.im-founder-book strong {
    color: var(--bone);

    font-size: 14px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.im-testimonial-section {
    padding: 105px 0;
}


.im-testimonial-heading {
    max-width: 650px;

    margin-bottom: 45px;
}


.im-testimonial-heading h2 {
    margin: 0 0 15px;

    font-size: 45px;

    font-weight: 500;

    line-height: 1.05;
}


.im-testimonial-heading h2 span {
    color: var(--gold-soft);
}


.im-testimonial-heading p {
    margin: 0;

    color: var(--muted-ink);

    font-size: 14px;

    line-height: 1.7;
}


.im-testimonial-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


.im-testimonial-card {
    height: 100%;

    padding: 27px;

    background: #0E0D0A;

    border: 1px solid var(--line-ink);

    transition: .3s ease;
}


.im-testimonial-card:hover {
    border-color: rgba(194, 155, 60, .5);

    transform: translateY(-4px);
}


.im-testimonial-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}


.im-testimonial-person {
    display: flex;

    align-items: center;

    gap: 12px;
}


.im-testimonial-avatar {
    width: 48px;
    height: 48px;

    overflow: hidden;

    border: 1px solid var(--gold);

    border-radius: 50%;
}


.im-testimonial-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.im-testimonial-person strong,
.im-testimonial-person span {
    display: block;
}


.im-testimonial-person strong {
    color: var(--bone);

    font-size: 13px;

    line-height: 1.3;
}


.im-testimonial-person span {
    margin-top: 3px;

    color: var(--muted-ink);

    font-size: 10px;

    line-height: 1.3;
}


.im-testimonial-top > i {
    color: var(--gold);

    font-size: 24px;

    opacity: .65;
}


.im-testimonial-card p {
    margin: 0;

    color: var(--muted-ink);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.im-about-cta {
    padding: 0 0 90px;
}


.im-about-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    background: var(--gold);

    color: var(--ink);
}


.im-about-cta-inner > div > span {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.im-about-cta-inner h2 {
    margin: 0;

    font-size: 35px;

    font-weight: 500;

    line-height: 1.1;
}


.im-about-cta-inner h2 em {
    font-family: Georgia, serif;

    font-weight: 400;
}


.im-about-cta-inner > a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 13px 20px;

    border: 1px solid var(--ink);

    color: var(--ink);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}


.im-about-cta-inner > a:hover {
    background: var(--ink);

    color: var(--gold-soft);
}


.im-about-cta-inner > a i {
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .im-about-hero-grid {
        gap: 45px;
    }

    .im-story-grid {
        gap: 50px;
    }

    .im-founder-grid {
        gap: 50px;
    }

    .im-learning-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {

    .im-about-hero {
        padding: 80px 0;
    }

    .im-about-hero-grid {
        grid-template-columns: 1fr;
    }

    .im-about-hero-image {
        height: 480px;
    }

    .im-story-grid {
        grid-template-columns: 1fr;
    }

    .im-story-image {
        height: 520px;
    }

    .im-founder-grid {
        grid-template-columns: 1fr;
    }

    .im-founder-image {
        height: 550px;
    }

    .im-learning-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .im-course-promise-box {
        grid-template-columns: 1fr;
    }

    .im-course-promise-side {
        min-height: 250px;
    }

}


/* =========================================================
   RESPONSIVE - 700px
========================================================= */

@media (max-width: 700px) {

    .im-about-hero {
        padding: 65px 0;
    }

    .im-about-hero-content h1 {
        font-size: 48px;

        letter-spacing: -1.5px;
    }

    .im-about-hero-image {
        height: 420px;
    }

    .im-story-image {
        height: 450px;
    }

    .im-about-story,
    .im-learning-section,
    .im-course-promise,
    .im-founder-section,
    .im-testimonial-section {
        padding: 80px 0;
    }

    .im-about-stats {
        padding-bottom: 80px;
    }

    .im-stats-wrap {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .im-stat-line {
        display: none;
    }

    .im-stat-item strong {
        font-size: 30px;
    }

    .im-course-promise-content {
        padding: 40px 30px;
    }

    .im-course-features {
        grid-template-columns: 1fr;
    }

    .im-founder-content h2 {
        font-size: 48px;
    }

    .im-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .im-about-cta-inner {
        align-items: flex-start;

        flex-direction: column;

        padding: 35px 30px;
    }

}


/* =========================================================
   RESPONSIVE - 500px
========================================================= */

@media (max-width: 500px) {

    .im-about-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .im-about-hero {
        padding: 55px 0;
    }

    .im-about-hero-content h1 {
        font-size: 39px;

        line-height: 1.05;
    }

    .im-about-hero-content > p {
        font-size: 14px;
    }

    .im-about-hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }

    .im-about-hero-image {
        height: 350px;
    }

    .im-about-hero-label {
        left: 15px;
    }

    .im-about-story,
    .im-learning-section,
    .im-course-promise,
    .im-founder-section,
    .im-testimonial-section {
        padding: 65px 0;
    }

    .im-about-stats {
        padding-bottom: 65px;
    }

    .im-story-visual,
    .im-founder-image-wrap {
        padding-right: 15px;
        padding-bottom: 20px;
    }

    .im-story-image {
        height: 370px;
    }

    .im-story-content h2,
    .im-learning-heading h2,
    .im-course-promise-content h2,
    .im-testimonial-heading h2 {
        font-size: 31px;

        letter-spacing: -.5px;
    }

    .im-story-content > p,
    .im-founder-content > p {
        font-size: 13px;
    }

    .im-story-floating {
        right: 15px;

        padding: 15px 18px;
    }

    .im-story-floating strong {
        font-size: 25px;
    }

    .im-learning-grid {
        grid-template-columns: 1fr;
    }

    .im-learning-card {
        min-height: auto;

        padding: 22px;
    }

    .im-course-promise-content {
        padding: 32px 22px;
    }

    .im-course-promise-side {
        min-height: 220px;

        padding: 28px;
    }

    .im-course-promise-side > strong {
        font-size: 32px;
    }

    .im-founder-image {
        height: 420px;
    }

    .im-founder-content h2 {
        font-size: 40px;
    }

    .im-founder-book {
        align-items: flex-start;
    }

    .im-testimonial-card {
        padding: 21px;
    }

    .im-testimonial-card p {
        font-size: 13px;
    }

    .im-about-cta {
        padding-bottom: 60px;
    }

    .im-about-cta-inner {
        padding: 30px 22px;
    }

    .im-about-cta-inner h2 {
        font-size: 28px;
    }

}


/* =========================================
   CONTACT PAGE
========================================= */

.im-contact-page {
    position: relative;
    padding: 120px 22px;

    background: var(--ink);
    color: var(--bone);

    overflow: hidden;
}


/* Subtle background glow */

.im-contact-page::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background: rgba(194, 155, 60, 0.035);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.im-contact-container {
    position: relative;
    z-index: 2;

    width: min(100%, var(--maxw));
    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.im-contact-intro {
    max-width: 760px;
    margin-bottom: 75px;
}


.im-contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.im-contact-eyebrow span {
    width: 30px;
    height: 1px;

    background: var(--gold);
}


.im-contact-intro h1 {
    margin: 0;

    color: var(--bone);

    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -4px;
}


.im-contact-intro h1 span {
    color: var(--gold);
}


.im-contact-intro p {
    max-width: 610px;

    margin: 27px 0 0;

    color: var(--muted-ink);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   MAIN GRID
========================================= */

.im-contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 85px;

    padding-top: 65px;

    border-top: 1px solid var(--line-ink);
}


/* =========================================
   LEFT INFORMATION
========================================= */

.im-contact-info {
    padding-right: 25px;
}


.im-contact-brand {
    margin-bottom: 28px;

    color: var(--bone);

    font-size: 18px;
    font-weight: 700;

    letter-spacing: -0.3px;
}


.im-contact-brand span {
    color: var(--gold);
}


.im-contact-info h2 {
    margin: 0 0 20px;

    color: var(--bone);

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 500;

    line-height: 1.08;
    letter-spacing: -1.8px;
}


.im-contact-description {
    max-width: 475px;

    margin: 0 0 45px;

    color: var(--muted-ink);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.im-contact-details {
    display: flex;
    flex-direction: column;

    gap: 27px;
}


.im-contact-item {
    display: flex;
    align-items: center;

    gap: 17px;
}


.im-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border: 1px solid var(--line-ink);

    background: #11100D;

    color: var(--gold);

    font-size: 15px;

    transition:
        all 0.35s var(--ease);
}


.im-contact-item:hover .im-contact-icon {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--ink);

    transform: translateY(-3px);
}


.im-contact-item-content {
    display: flex;
    flex-direction: column;
}


.im-contact-item-content span {
    margin-bottom: 3px;

    color: var(--muted-ink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.im-contact-item-content a,
.im-contact-item-content p {
    margin: 0;

    color: var(--bone);

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition: color 0.3s ease;
}


.im-contact-item-content a:hover {
    color: var(--gold-soft);
}


/* =========================================
   CONTACT NOTE
========================================= */

.im-contact-note {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    margin-top: 55px;
    padding-top: 27px;

    border-top: 1px solid var(--line-ink);
}


.im-contact-note > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.im-contact-note p {
    max-width: 320px;

    margin: 0;

    color: var(--muted-ink);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   FORM WRAPPER
========================================= */

.im-contact-form-wrap {
    position: relative;

    padding: 45px;

    background: #11100D;

    border: 1px solid var(--line-ink);
}


/* Gold top line */

.im-contact-form-wrap::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 45px;

    width: 65px;
    height: 2px;

    background: var(--gold);
}


/* =========================================
   FORM HEADING
========================================= */

.im-form-heading {
    margin-bottom: 40px;
}


.im-form-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.im-form-heading h2 {
    margin: 0;

    color: var(--bone);

    font-size: clamp(27px, 3vw, 39px);
    font-weight: 500;

    line-height: 1.15;
    letter-spacing: -1.4px;
}


/* =========================================
   FORM
========================================= */

.im-contact-form {
    display: flex;
    flex-direction: column;

    gap: 27px;
}


.im-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.im-form-group {
    display: flex;
    flex-direction: column;
}


.im-form-group label {
    margin-bottom: 9px;

    color: var(--muted-ink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.im-form-group input,
.im-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 0;
    border-bottom: 1px solid var(--line-ink);

    border-radius: 0;
    outline: none;

    background: transparent;

    color: var(--bone);

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        padding-left 0.3s ease;
}


.im-form-group input {
    height: 35px;
}


.im-form-group textarea {
    min-height: 115px;

    padding-top: 15px;

    resize: vertical;
}


.im-form-group input::placeholder,
.im-form-group textarea::placeholder {
    color: #625E55;
}


.im-form-group input:focus,
.im-form-group textarea:focus {
    border-color: var(--gold);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.im-contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 60px;

    margin-top: 8px;

    padding: 0 22px;

    border: 1px solid var(--gold);

    border-radius: 0;

    background: var(--gold);

    color: var(--ink);

    font-family: inherit;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;

    transition:
        background 0.35s var(--ease),
        color 0.35s var(--ease),
        border-color 0.35s var(--ease);
}


.im-contact-submit i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    font-size: 14px;

    transition:
        transform 0.35s var(--ease);
}


.im-contact-submit:hover {
    background: transparent;

    border-color: var(--gold);

    color: var(--gold);
}


.im-contact-submit:hover i {
    transform: translate(4px, -4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .im-contact-page {
        padding: 90px 22px;
    }

    .im-contact-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .im-contact-info {
        padding-right: 0;
    }

}


@media (max-width: 650px) {

    .im-contact-page {
        padding: 70px 18px;
    }


    .im-contact-intro {
        margin-bottom: 55px;
    }


    .im-contact-intro h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }


    .im-contact-intro p {
        font-size: 14px;
    }


    .im-contact-grid {
        gap: 50px;

        padding-top: 45px;
    }


    .im-contact-form-wrap {
        padding: 32px 22px;
    }


    .im-contact-form-wrap::before {
        left: 22px;
    }


    .im-form-row {
        grid-template-columns: 1fr;

        gap: 27px;
    }


    .im-form-heading {
        margin-bottom: 32px;
    }


    .im-form-heading h2 {
        font-size: 28px;
    }


    .im-contact-info h2 {
        font-size: 34px;
    }


    .im-contact-description {
        font-size: 13px;
    }


    .im-contact-item {
        gap: 13px;
    }


    .im-contact-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

}


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



.pic {
    width: 100%;
    height: auto;
    min-width: 100%;
    border-radius: 0px;
    overflow: hidden;
}

.pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}