:root {
    --cream: #F5F1EA;
    --cream-2: #EBE4D6;
    --ink: #131313;
    --ink-2: #1F1F1F;
    --ink-3: #2A2A2A;
    --red: #DC2626;
    --red-2: #B91C1C;
    --amber: #F59E0B;
    --amber-2: #FCD34D;
    --white: #FFFFFF;
    --g-100: #EFEBE3;
    --g-200: #DDD6C8;
    --g-300: #C9C2B5;
    --g-500: #8A8275;
    --g-700: #4A4640;
    --g-900: #1F1C18;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --script: 'Caveat', cursive;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased
}

@media(max-width:968px) {
    body {
        cursor: auto
    }
}

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

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

@media(max-width:968px) {
    button {
        cursor: pointer
    }
}

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

::selection {
    background: var(--red);
    color: white
}

/* PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease)
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-inner {
    text-align: center;
    width: 300px
}

.preloader-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 24px;
    letter-spacing: -2px
}

.preloader-logo .pl-e {
    font-size: 2rem;
    color: var(--ink)
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, .08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width .15s linear
}

.preloader-pct {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--g-700)
}

/* CURSOR */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
    transform: translate(-50%, -50%)
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red)
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--red);
    transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease)
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, .1)
}

.cursor-dot.hover {
    width: 0;
    height: 0
}

@media(max-width:968px) {

    .cursor-dot,
    .cursor-ring {
        display: none
    }
}

/* CONTAINER */
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

@media(max-width:768px) {
    .wrap {
        padding: 0 20px
    }
}

/* TYPOGRAPHY HELPERS */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--g-700)
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--red)
}

.eyebrow.light {
    color: var(--g-300)
}

.eyebrow.light::before {
    background: var(--amber)
}

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.02
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin: 20px 0 30px
}

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

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

.script {
    font-family: var(--script);
    font-weight: 700;
    color: var(--red);
    font-style: normal
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: none;
    will-change: transform;
    border: 1.5px solid transparent
}

@media(max-width:968px) {
    .btn {
        cursor: pointer
    }
}

.btn svg {
    transition: transform .4s var(--ease)
}

.btn:hover svg {
    transform: translateX(4px)
}

.btn-dark {
    background: var(--ink);
    color: var(--cream)
}

.btn-dark:hover {
    background: var(--red)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink)
}

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

.btn-light {
    background: var(--cream);
    color: var(--ink)
}

.btn-light:hover {
    background: var(--amber);
    color: var(--ink)
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 20px
}

/* LOGO */
.nav-logo {
    color: #D01C1F;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    font-size: 0
}

.nav-logo svg.ac-logo {
    height: 38px;
    width: auto;
    display: block
}

.preloader-logo {
    color: #D01C1F;
    line-height: 0;
    font-size: 0;
    margin-bottom: 24px
}

.preloader-logo svg.ac-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto
}

.ft-logo {
    color: var(--cream);
    line-height: 0;
    font-size: 0;
    margin-bottom: 22px
}

.ft-logo svg.ac-logo {
    width: 120px;
    height: auto;
    display: block
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease)
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(245, 241, 234, .85);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .04)
}

.nav-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px
}

.nav-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--red);
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 3px
}

.nav-logo .pl-e {
    font-size: 1.1rem;
    color: var(--ink)
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center
}

.nav-link {
    padding: 10px 18px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 1
}

.nav-link span {
    display: block;
    transition: transform .4s var(--ease)
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    left: 18px;
    top: 10px;
    color: var(--red);
    transform: translateY(100%);
    transition: transform .4s var(--ease)
}

.nav-link:hover span {
    transform: translateY(-100%)
}

.nav-link:hover::after {
    transform: translateY(0)
}

.nav-cta {
    padding: 12px 22px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 600;
    transition: all .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.nav-cta:hover {
    background: var(--red)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: .3s
}

@media(max-width:1024px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .nav-links.open {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 30px;
        flex-direction: column;
        gap: 8px
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2
}

.hero-tag {
    margin-bottom: 30px
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.6s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, .6)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0)
    }
}

.hero h1 {
    font-size: clamp(3rem, 9vw, 9rem);
    line-height: .93;
    letter-spacing: -.04em;
    margin-bottom: 40px;
    font-weight: 900
}

.hero h1 .row {
    display: block;
    overflow: hidden
}

.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(105%);
    animation: wordIn 1s var(--ease) forwards
}

@keyframes wordIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--g-300)
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--g-700);
    max-width: 480px;
    line-height: 1.6
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    will-change: transform;
    pointer-events: none
}

.hs-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, .3), transparent 70%);
    top: -80px;
    right: -100px;
    animation: float 18s ease-in-out infinite
}

.hs-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, .2), transparent 70%);
    bottom: -80px;
    left: -100px;
    animation: float 22s ease-in-out infinite reverse
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(40px, -30px)
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--g-500);
    text-transform: uppercase;
    z-index: 3
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--g-300);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--red);
    animation: scrollDown 2s infinite
}

@keyframes scrollDown {
    0% {
        top: -50%
    }

    100% {
        top: 100%
    }
}

@media(max-width:768px) {
    .hero-meta {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .hero-actions {
        justify-content: flex-start
    }
}

/* MARQUEE */
.marquee {
    background: var(--ink);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3)
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 44px;
    white-space: nowrap;
    animation: scroll 55s linear infinite;
    font-family: var(--mono);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .22em;
    color: var(--cream);
    text-transform: uppercase
}

.marquee-track .dot {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block
}

.marquee-track .dot.a {
    background: var(--amber)
}

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

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

/* ABOUT */
.about {
    padding: 160px 0;
    position: relative
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--g-300)
}

.stat-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--red);
    line-height: 1;
    font-weight: 900
}

.stat-label {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--g-700);
    margin-top: 8px;
    text-transform: uppercase
}

.about-right p {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 560px
}

.about-right p+p {
    color: var(--g-700);
    font-size: 1.05rem
}

@media(max-width:1024px) {
    .about {
        padding: 100px 0
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px
    }
}

/* SERVICES */
.services {
    padding: 160px 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden
}

.services .eyebrow {
    color: var(--amber)
}

.services .eyebrow::before {
    background: var(--amber)
}

.services .section-title {
    color: var(--cream)
}

.services-head {
    max-width: 900px;
    margin-bottom: 80px
}

.services-head p {
    color: var(--g-300);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.6
}

.services-list {
    display: grid;
    gap: 30px
}

.service {
    display: grid;
    grid-template-columns: 80px 1fr 1.2fr;
    gap: 50px;
    padding: 50px 0;
    border-top: 1px solid var(--ink-3);
    align-items: center;
    cursor: none;
    transition: transform .55s var(--ease);
    will-change: transform
}

@media(max-width:968px) {
    .service {
        cursor: pointer
    }
}

.service:last-child {
    border-bottom: 1px solid var(--ink-3)
}

.service:hover {
    transform: translateX(16px)
}

.service-no {
    font-family: var(--mono);
    color: var(--amber);
    font-size: .85rem;
    letter-spacing: .1em;
    font-weight: 500
}

.service-body h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.1;
    transition: color .4s var(--ease)
}

.service:hover h3 {
    color: var(--amber)
}

.service-body p {
    color: var(--g-300);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 20px
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.service-tag {
    font-family: var(--mono);
    font-size: .7rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--ink-3);
    border-radius: 100px;
    color: var(--g-300);
    letter-spacing: .05em;
    text-transform: uppercase
}

.service-visual {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink-2);
    position: relative;
    transition: transform .6s var(--ease)
}

.service:hover .service-visual {
    transform: scale(1.03)
}

.service-visual svg {
    width: 100%;
    height: 100%
}

@media(max-width:1024px) {
    .services {
        padding: 100px 0
    }

    .service {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0
    }

    .service:hover {
        transform: none
    }

    .service-visual {
        order: -1;
        max-width: 500px
    }
}

/* WORK */
.work {
    padding: 160px 0;
    background: var(--cream)
}

.work-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px
}

.work-head h2 {
    max-width: 700px
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px
}

.w-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: none;
    background: var(--g-100)
}

@media(max-width:968px) {
    .w-card {
        cursor: pointer
    }
}

.w-card.lg {
    grid-column: span 7;
    aspect-ratio: 16/10
}

.w-card.sm {
    grid-column: span 5;
    aspect-ratio: 16/11
}

.w-card.md {
    grid-column: span 6
}

.w-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.w-card:hover .w-art {
    transform: scale(1.06)
}

.w-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--cream);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    z-index: 2
}

.w-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: opacity .5s var(--ease);
    opacity: .92
}

.w-card[data-tint="red"] .w-overlay::before {
    background: var(--red)
}

.w-card[data-tint="amber"] .w-overlay::before {
    background: var(--amber)
}

.w-card[data-tint="ink"] .w-overlay::before {
    background: var(--ink)
}

.w-card[data-tint="cream"] .w-overlay::before {
    background: var(--cream-2)
}

.w-card[data-tint="cream"] .w-overlay {
    color: var(--ink)
}

.w-card[data-tint="amber"] .w-overlay {
    color: var(--ink)
}

.w-card:hover .w-overlay {
    opacity: 1;
    transform: translateY(0)
}

.w-meta {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 10px
}

.w-overlay h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1;
    margin-bottom: 8px
}

.w-overlay p {
    font-size: .95rem;
    opacity: .85;
    max-width: 380px
}

.w-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500
}

@media(max-width:968px) {
    .work {
        padding: 100px 0
    }

    .w-card.lg,
    .w-card.sm,
    .w-card.md {
        grid-column: span 12
    }
}

/* CLIENTS — opposite-direction marquee */
.clients {
    padding: 120px 0;
    background: var(--cream-2);
    border-top: 1px solid var(--g-200);
    border-bottom: 1px solid var(--g-200);
    overflow: hidden
}

.clients-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.clients-head h2 {
    font-size: clamp(2rem, 4vw, 3.4rem)
}

.clients-head p {
    color: var(--g-700);
    margin-top: 14px;
    font-size: 1.05rem
}

.clients-marquee {
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    margin: 0 -40px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%)
}

.cm-row {
    display: flex;
    gap: 16px;
    white-space: nowrap;
    will-change: transform;
    flex-shrink: 0
}

.cm-row.left {
    animation: cmLeft 38s linear infinite
}

.cm-row.right {
    animation: cmRight 44s linear infinite
}

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

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

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

    to {
        transform: translateX(0)
    }
}

.cm-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border: 1.5px solid var(--g-300);
    border-radius: 100px;
    background: var(--cream);
    font-family: var(--sans);
    font-style: normal;
    font-weight: 500;
    font-size: 1.02rem;
    color: var(--ink);
    transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
    flex-shrink: 0;
    letter-spacing: .01em;
    cursor: none
}

@media(max-width:968px) {
    .cm-pill {
        cursor: pointer
    }
}

.cm-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block
}

.cm-pill.amber::before {
    background: var(--amber)
}

.cm-pill:hover {
    background: var(--ink);
    color: var(--amber);
    border-color: var(--ink)
}

@media(max-width:768px) {
    .clients {
        padding: 80px 0
    }

    .cm-pill {
        padding: 14px 24px;
        font-size: 1.15rem
    }
}

/* PROCESS — with images, cleaner hover */
.process {
    padding: 160px 0;
    background: var(--cream)
}

.process-head {
    max-width: 800px;
    margin-bottom: 80px
}

.process .section-title {
    letter-spacing: 0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.p-step {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1.5px solid var(--g-300);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease)
}

.p-step:hover {
    transform: translateY(-8px);
    border-color: var(--ink);
    background: var(--ink)
}

.p-img {
    aspect-ratio: 1.4/1;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: var(--ink);
    transition: background .4s var(--ease), color .4s var(--ease)
}

.p-step:hover .p-img {
    background: var(--red);
    color: var(--cream)
}

.p-img svg {
    width: 64px;
    height: 64px
}

.p-img img {
    width: 64px;
    height: 64px;
    object-fit: contain
}

.p-content {
    padding: 28px 28px 32px;
    transition: color .4s var(--ease)
}

.p-step:hover .p-content {
    color: var(--cream)
}

.p-num {
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .15em;
    color: var(--red);
    margin-bottom: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .4s var(--ease)
}

.p-step:hover .p-num {
    color: var(--amber)
}

.p-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 900;
    transition: color .4s var(--ease)
}

.p-content p {
    font-size: .92rem;
    line-height: 1.55;
    color: var(--g-700);
    transition: color .4s var(--ease)
}

.p-step:hover .p-content p {
    color: var(--g-300)
}

@media(max-width:1100px) {
    .process {
        padding: 100px 0
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

@media(max-width:600px) {
    .process-grid {
        grid-template-columns: 1fr
    }
}

/* ===== ALIEN-STYLE PILL BUTTONS ===== */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 500;
    font-size: .9rem;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: none;
    white-space: nowrap;
    will-change: transform
}

@media(max-width:968px) {
    .btn-pill {
        cursor: pointer
    }
}

.btn-pill svg {
    width: 13px;
    height: 13px;
    transition: transform .3s var(--ease);
    flex-shrink: 0
}

.btn-pill:hover svg {
    transform: translate(2px, -2px)
}

.btn-pill-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink)
}

.btn-pill-ghost:hover {
    background: var(--ink);
    color: var(--cream)
}

.btn-pill-dark {
    background: var(--ink);
    color: var(--cream);
    border: 1.5px solid var(--ink)
}

.btn-pill-dark:hover {
    background: var(--red);
    border-color: var(--red)
}

/* ===== ALIEN-STYLE NAV ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-burger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    cursor: none;
    transition: background .3s var(--ease);
    flex-shrink: 0;
    padding: 0
}

@media(max-width:968px) {
    .nav-burger {
        cursor: pointer
    }
}

.nav-burger:hover {
    background: var(--ink)
}

.nav-burger:hover span {
    background: var(--cream)
}

.nav-burger span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease), background .3s var(--ease);
    display: block
}

.nav-burger.open span:first-child {
    transform: translateY(4px) rotate(45deg)
}

.nav-burger.open span:last-child {
    transform: translateY(-2px) rotate(-45deg)
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
    padding: 60px
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible
}

.nav-overlay a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 5rem);
    color: var(--cream);
    transition: color .3s, transform .4s var(--ease);
    letter-spacing: -.02em
}

.nav-overlay a:hover {
    color: var(--amber);
    transform: translateX(20px)
}

@media(max-width:768px) {
    .btn-pill-ghost {
        display: none
    }
}

/* ===== ALIEN-STYLE HERO ===== */
.hero-alien {
    min-height: 100vh;
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

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

.hero-mega {
    font-family: var(--sans);
    font-size: clamp(3rem, 10.5vw, 10.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    margin: 0;
    color: var(--ink)
}

.hero-mega .line {
    display: block;
    margin-bottom: 8px
}

.hero-mega .pill {
    display: inline-flex;
    align-items: center;
    gap: .18em;
    padding: .12em .4em;
    border-radius: .55em;
    position: relative;
    vertical-align: baseline;
    line-height: 1.05;
    margin: .04em .04em
}

.hero-mega .pill.red {
    background: var(--red);
    color: var(--cream)
}

.hero-mega .pill.amber {
    background: var(--amber);
    color: var(--ink)
}

.hero-mega .pill .spark {
    width: .55em;
    height: .55em;
    flex-shrink: 0;
    animation: spinSlow 8s linear infinite
}

@keyframes spinSlow {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 60px;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--g-300)
}

.hero-desc {
    max-width: 340px;
    font-size: 1rem;
    color: var(--g-700);
    line-height: 1.5;
    margin-left: auto;
    text-align: right
}

.hero-badge {
    position: relative;
    width: 140px;
    height: 140px;
    color: var(--ink);
    flex-shrink: 0
}

.hero-badge .badge-text {
    width: 100%;
    height: 100%;
    animation: spinSlow 18s linear infinite
}

.hero-badge .badge-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red)
}

@media(max-width:768px) {
    .hero-alien {
        padding: 120px 0 60px
    }

    .hero-bottom {
        margin-top: 40px;
        align-items: flex-start
    }

    .hero-desc {
        max-width: none;
        text-align: left;
        margin-left: 0
    }

    .hero-badge {
        width: 100px;
        height: 100px
    }
}

/* ===== HERO PORTFOLIO COLUMNS (Superside-style) ===== */
.hero-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.hero-split .hero-mega {
    font-size: clamp(2.4rem, 6.3vw, 6.5rem)
}

.hero-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    height: min(78vh, 640px);
    position: relative
}

.hero-col {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%)
}

.hero-col-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: colUp 38s linear infinite;
    will-change: transform
}

.hero-col.down .hero-col-track {
    animation-name: colDown
}

.hero-col.fast .hero-col-track {
    animation-duration: 30s
}

.hero-col.slow .hero-col-track {
    animation-duration: 46s
}

.hero-col:hover .hero-col-track {
    animation-play-state: paused
}

@keyframes colUp {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(0, -50%, 0)
    }
}

@keyframes colDown {
    from {
        transform: translate3d(0, -50%, 0)
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.hero-card {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    background: var(--g-100);
    cursor: none;
    transition: transform .5s var(--ease)
}

@media(max-width:968px) {
    .hero-card {
        cursor: pointer
    }
}

.hero-card:hover {
    transform: scale(.97)
}

.hero-card .hc-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .8s var(--ease)
}

.hero-card:hover .hc-art {
    transform: scale(1.08)
}

.hero-card .hc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .12em;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .88);
    color: var(--ink);
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    z-index: 2;
    font-weight: 500
}

.hero-card .hc-foot {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    z-index: 2;
    color: var(--cream)
}

.hero-card .hc-foot h4 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .45);
    letter-spacing: -.01em
}

.hero-card .hc-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease)
}

.hero-card:hover .hc-arrow {
    opacity: 1;
    transform: translateY(0)
}

.hero-card .hc-arrow svg {
    width: 13px;
    height: 13px
}

.hero-card[data-tone="cream"] .hc-foot,
.hero-card[data-tone="amber"] .hc-foot {
    color: var(--ink)
}

.hero-card[data-tone="cream"] .hc-foot h4,
.hero-card[data-tone="amber"] .hc-foot h4 {
    text-shadow: none
}

.hero-card[data-tone="cream"] .hc-arrow,
.hero-card[data-tone="amber"] .hc-arrow {
    background: var(--ink);
    color: var(--cream)
}

@media(max-width:1100px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero-split .hero-mega {
        font-size: clamp(2.8rem, 9vw, 7rem)
    }

    .hero-cols {
        height: 520px
    }
}

@media(max-width:600px) {
    .hero-cols {
        grid-template-columns: repeat(2, 1fr);
        height: 460px;
        gap: 10px
    }

    .hero-cols .hero-col:nth-child(3) {
        display: none
    }
}

/* TESTIMONIALS — 3-up carousel */
.testi {
    padding: 140px 0;
    background: var(--cream-2)
}

.testi-head {
    margin-bottom: 60px;
    max-width: 700px
}

.testi-slider {
    position: relative;
    overflow: hidden;
    padding: 14px 0 10px
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform .7s var(--ease);
    will-change: transform
}

.t-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--cream);
    border: 1px solid var(--g-200);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: border-color .4s var(--ease), transform .4s var(--ease)
}

.t-slide:hover {
    border-color: var(--ink);
    transform: translateY(-4px)
}

.t-slide .t-mark {
    font-family: var(--serif);
    font-size: 3.4rem;
    color: var(--red);
    line-height: .45;
    margin-bottom: 24px;
    font-weight: 900
}

.t-slide p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 400;
    flex-grow: 1
}

.t-slide .t-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.t-slide .t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    overflow: hidden
}

.t-slide .t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.t-slide .t-author>div {
    text-align: left
}

.t-slide .t-author strong {
    display: block;
    font-size: .98rem;
    font-weight: 600;
    font-family: var(--sans);
    color: var(--ink)
}

.t-slide .t-author span {
    font-size: .74rem;
    color: var(--g-700);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .05em
}

.testi-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 36px
}

.testi-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--g-300);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: none;
    transition: background .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
    padding: 0
}

@media(max-width:968px) {
    .testi-arrow {
        cursor: pointer
    }
}

.testi-arrow:hover {
    background: var(--ink);
    border-color: var(--ink)
}

.testi-arrow:hover svg {
    stroke: var(--cream)
}

.testi-arrow:disabled {
    opacity: .3;
    pointer-events: none
}

.testi-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--ink);
    transition: stroke .3s var(--ease);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

@media(max-width:1024px) {
    .t-slide {
        flex: 0 0 calc((100% - 24px) / 2)
    }
}

@media(max-width:640px) {
    .testi {
        padding: 90px 0
    }

    .t-slide {
        flex: 0 0 100%;
        padding: 32px 26px
    }
}


/* CONTACT */
.contact {
    padding: 160px 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, .3), transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%
}

.contact::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, .15), transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%
}

.contact .wrap {
    position: relative;
    z-index: 2
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.contact-left .eyebrow {
    color: var(--amber)
}

.contact-left .eyebrow::before {
    background: var(--amber)
}

.contact-left h2 {
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 20px 0 30px;
    line-height: 1
}

.contact-left h2 .italic {
    color: var(--amber)
}

.contact-left>p {
    color: var(--g-300);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 480px
}

.contact-info {
    display: flex;
    flex-direction: column
}

.info-row {
    padding: 20px 0;
    border-top: 1px solid var(--ink-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.info-row:last-child {
    border-bottom: 1px solid var(--ink-3)
}

.info-row .info-lbl {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--g-500);
    text-transform: uppercase
}

.info-row .info-val {
    font-weight: 500;
    color: var(--cream);
    transition: color .3s var(--ease)
}

.info-row a.info-val:hover {
    color: var(--amber)
}

.contact-form {
    background: var(--cream);
    color: var(--ink);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-form label span {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--g-700);
    text-transform: uppercase;
    font-weight: 500
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--g-200);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: .95rem;
    background: var(--cream-2);
    transition: all .3s var(--ease);
    color: var(--ink);
    width: 100%
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .1)
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
    font-family: var(--sans)
}

.contact-form .btn-full {
    width: 100%;
    justify-content: center;
    padding: 20px;
    background: var(--ink);
    color: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: none;
    transition: background .3s var(--ease), border-color .3s var(--ease)
}

@media(max-width:968px) {
    .contact-form .btn-full {
        cursor: pointer
    }
}

.contact-form .btn-full:hover {
    background: var(--red);
    border-color: var(--red)
}

.contact-form .btn-full svg {
    transition: transform .3s var(--ease)
}

.contact-form .btn-full:hover svg {
    transform: translate(3px, -3px)
}

.form-status {
    text-align: center;
    font-size: .9rem;
    color: var(--red);
    font-weight: 600;
    min-height: 18px
}

/* Contact Form 7 — match the original built-in form layout exactly */
.contact-form.wpcf7-form {
    margin: 0
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%
}

.contact-form .wpcf7-spinner {
    display: none
}

.contact-form .wpcf7-not-valid-tip {
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--red);
    font-weight: 500;
    margin-top: 4px
}

.contact-form .wpcf7-response-output {
    text-align: center;
    font-size: .9rem;
    font-weight: 600;
    color: var(--red);
    border: none;
    margin: 0;
    padding: 0;
    min-height: 18px
}

@media(max-width:1024px) {
    .contact {
        padding: 100px 0
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 28px
    }
}

/* FOOTER */
.footer {
    background: var(--ink-2);
    color: var(--cream);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden
}

.foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--ink-3)
}

.foot-brand .ft-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 2.4rem;
    margin-bottom: 18px;
    letter-spacing: -1px
}

.foot-brand .ft-logo .red {
    color: var(--red)
}

.foot-brand .ft-logo .e {
    color: var(--amber);
    font-size: 1.6rem
}

.foot-brand p {
    color: var(--g-300);
    max-width: 320px;
    line-height: 1.6;
    font-size: .95rem
}

.foot-col h5 {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--amber);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase
}

.foot-col a {
    display: block;
    margin-bottom: 10px;
    color: var(--g-300);
    font-size: .95rem;
    transition: color .3s, transform .3s;
    text-decoration: none
}

.foot-col a:hover {
    color: var(--cream);
    transform: translateX(3px)
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-size: .85rem;
    color: var(--g-500);
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--mono)
}

.foot-legal {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--mono)
}

.foot-legal a {
    color: var(--g-500);
    transition: color .3s var(--ease);
    text-decoration: none
}

.foot-legal a:hover {
    color: var(--cream)
}

.foot-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--g-300);
    font-size: .92rem;
    transition: color .3s var(--ease), transform .3s var(--ease);
    text-decoration: none
}

.foot-social a:hover {
    color: var(--cream);
    transform: translateX(3px)
}

.foot-social .social-ico {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.foot-social a:hover .social-ico {
    transform: scale(1.1)
}

.foot-mega {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(5rem, 18vw, 16rem);
    line-height: .85;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 158, 11, .3);
    margin-top: 50px;
    margin-bottom: -30px;
    letter-spacing: -.04em;
    user-select: none
}

.foot-mega .red {
    -webkit-text-stroke-color: rgba(220, 38, 38, .4)
}

@media(max-width:968px) {
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .foot-brand {
        grid-column: span 2
    }
}

@media(max-width:600px) {
    .foot-top {
        grid-template-columns: 1fr
    }

    .foot-brand {
        grid-column: span 1
    }
}

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

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

/* BLOG SLIDER */
.blog {
    padding: 140px 0;
    background: var(--cream)
}

.blog-head {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px
}

.blog-head .bh-left {
    max-width: 680px
}

.blog-head .eyebrow {
    margin-bottom: 16px
}

.blog-head h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 14px;
    line-height: 1
}

.blog-head h2 .italic {
    color: var(--red)
}

.blog-head p {
    color: var(--g-700);
    font-size: 1.05rem;
    line-height: 1.55
}

.blog-slider {
    position: relative;
    overflow: hidden;
    padding: 16px 0 12px
}

.blog-track {
    display: flex;
    gap: 24px;
    transition: transform .7s var(--ease);
    will-change: transform
}

.blog-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--cream);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--g-200);
    transition: transform .4s var(--ease), border-color .4s var(--ease);
    cursor: none;
    display: block;
    color: inherit;
    text-decoration: none
}

@media(max-width:968px) {
    .blog-card {
        cursor: pointer
    }
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--ink)
}

.bc-art {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden
}

.bc-art svg {
    width: 100%;
    height: 100%;
    display: block
}

.bc-body {
    padding: 28px 28px 32px
}

.bc-cat {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 14px
}

.bc-body h3 {
    font-size: 1.32rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: var(--serif);
    font-style: italic;
    letter-spacing: -.01em;
    color: var(--ink)
}

.bc-body p {
    font-size: .92rem;
    color: var(--g-700);
    line-height: 1.55
}

.blog-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 36px
}

.blog-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--g-300);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: none;
    transition: background .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease)
}

@media(max-width:968px) {
    .blog-arrow {
        cursor: pointer
    }
}

.blog-arrow:hover {
    background: var(--ink);
    border-color: var(--ink)
}

.blog-arrow:hover svg {
    stroke: var(--cream)
}

.blog-arrow:disabled {
    opacity: .3;
    pointer-events: none
}

.blog-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--ink);
    transition: stroke .3s var(--ease);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

@media(max-width:1024px) {
    .blog-card {
        flex: 0 0 calc((100% - 24px) / 2)
    }
}

@media(max-width:640px) {
    .blog {
        padding: 90px 0
    }

    .blog-card {
        flex: 0 0 100%
    }

    .blog-head h2 {
        font-size: clamp(2.2rem, 9vw, 3rem)
    }

    .blog-track {
        gap: 18px
    }
}