:root {
    --brand-red: #e8002d;
    --brand-dark: #0a0a0a;
    --brand-off: #f5f2ec;
    --brand-muted: #6b6b6b;
    --brand-line: #e0ddd6;
    --black: #0c0c0c;
    --offwhite: #f4f1eb;
    --white: #fff;
    --accent: #ff0707;
    --amber: #e8281a;
    --red: #e8281a;
    --red-dark: #b81f13;
    --cream: #fbf7ee;
    --mid: #1d1c1c;
    --grey: #8a8a8a;
    --grey-light: #e8e5de;
    --grey-dark: #1c1c1c;
    --muted: #6a6a6a;
    --border: rgba(12, 12, 12, 0.1);
    --section-alt: #f7f3ec;
    --font-display: "Bebas Neue", sans-serif;
    --font-serif: "DM Serif Display", serif;
    --font-body: "DM Sans", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}
.section-alt {
    background: var(--section-alt) !important;
}
body {
    font-family: var(--font-body);
    background: var(--offwhite);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
    font-size: 16px;
    line-height: 1.8;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
/* ── CURSOR ── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition:
        transform 0.15s ease,
        width 0.3s ease,
        height 0.3s ease;
    transform: translate(-50%, -50%);
}
.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition:
        transform 0.35s ease,
        opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}
body:hover .cursor {
    opacity: 1;
}

/* ── NAVBAR ── */
/* ── TOP BAR ── */
.top-bar {
    background: var(--black);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: white;
}
.top-bar-left {
    display: flex;
    gap: 24px;
}
.top-bar-right {
    display: flex;
    gap: 20px;
}

nav {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 70px;
    background: transparent;
    transition:
        background 0.4s,
        backdrop-filter 0.4s;
    
    border-bottom: 2px solid var(--red);
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    top: 0px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
}
.nav-logo span {
    color: var(--red);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(245, 242, 236, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #111;
    min-width: 220px;
    padding: 0.8rem 0;
    list-style: none;
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;

    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(245, 242, 236, 0.75);
    line-height: 1.6;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.95rem 1.2rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition:
        transform 0.3s,
        opacity 0.3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 9vw 11vw 8vh;
    position: relative;
    overflow: hidden;
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}
.hero-accent-line {
    position: absolute;
    top: 0;
    left: 5vw;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red) 40%, transparent);
    opacity: 0.4;
}
.hero-ticker {
    /*position: absolute;
    top: 70px;
    left: 0;
    right: 0;*/
    position: relative;
    overflow: hidden;
    height: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    background: rgba(166, 87, 57, 0.12);
    z-index: 2;
}
.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}
.ticker-inner span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgab(11, 9, 9, 0.9);
    padding: 0 3rem;
}
.ticker-inner span b {
    color: var(--red);
    font-weight: 700;
}
strong,
b{
    color: var(--red);
    font-weight: 600;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    text-align: center;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--red);
}
.hero-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(58px, 9vw, 120px);
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}
.hero-headline .outline {
    -webkit-text-stroke: 1px rgba(245, 242, 236, 0.3);
    color: transparent;
}
.hero-headline .red,
.hero-headline span{
    color: var(--red);
}
.hero-sub {
    margin-top: 1.5rem;
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-desc {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 242, 236, 0.65);
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.hero-desc strong {
    color: var(--white);
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.5rem;
    justify-content: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition:
        background 0.2s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}
.btn-primary svg {
    transition: transform 0.2s;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(245, 242, 236, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(245, 242, 236, 0.2);
    padding-bottom: 2px;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.btn-ghost:hover {
    color: var(--white);
    border-color: var(--white);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 5vh;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 5vh;
    position: relative;
    z-index: 3;
    justify-content: center;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num span {
    color: var(--red);
}
.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.4);
    margin-top: 0.4rem;
}
.hero-bottom-bar {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 2;
    margin-top: 4%;
}
.hero-bottom-item {
    flex: 1;
    padding: 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding-left: 2rem;
}
.hero-bottom-item:last-child {
    border-right: none;
}
.hero-bottom-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}
.hero-bottom-num span {
    color: var(--red);
}
.hero-bottom-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.35);
    margin-top: 0.4rem;
}
/* ── SCROLLING MARQUEE ── */
.marquee-wrap {
    background: var(--red);
    overflow: hidden;
    padding: 0.9rem 0;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 2.5rem;
    opacity: 0.9;
}
.marquee-track span.dot {
    color: rgba(255, 255, 255, 0.4);
    padding: 0;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ── SECTION BASE ── */
section {
    padding: 6rem 5vw;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label-line {
    width: 32px;
    height: 1px;
    background: var(--red);
}
.section-label-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    color: var(--black);
}
.section-title.white {
    color: var(--white);
}
.section-title em {
    color: var(--red);
    font-style: italic;
}

/* ── WHO WE ARE ── */
#who {
    background: var(--black);
}
.who-left {
}
.who-left .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}
.who-left p {
    color: rgba(245, 242, 236, 0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.who-left p strong {
    color: var(--white);
    font-weight: 500;
}
.who-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
}
.who-right-item {
    background: var(--grey-dark);
    padding: 2.5rem 2rem;
    border-left: 2px solid transparent;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.who-right-item:hover {
    border-color: var(--red);
    background: #222;
}
.who-right-item h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 1.2rem;
}
.who-right-item ul {
    list-style: none;
}
.who-right-item ul li {
    color: rgba(245, 242, 236, 0.7);
    font-size: 0.9rem;
    line-height: 2;
    padding-left: 1rem;
    position: relative;
}
.who-right-item ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.7rem;
}

/* ── 3P RULE ── */
#threep {
    background: var(--cream);
}
.threep-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.threep-intro {
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey);
}
.threep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}
.threep-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition:
        border-color 0.3s,
        transform 0.3s;
}
.threep-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.threep-card:hover::before {
    transform: scaleX(1);
}
.threep-card:hover {
    transform: translateY(-4px);
}
.threep-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--grey-light);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}
.threep-card:hover .threep-number {
    color: rgba(232, 40, 26, 0.15);
}
.threep-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.2rem;
}
.threep-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey);
}
.threep-card p strong {
    color: var(--black);
}

/* ── SERVICES ── */
#services {
    background: var(--black);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.services-list {
    list-style: none;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: default;
    transition: padding-left 0.3s;
    gap: 2rem;
}
.service-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.service-item:hover {
    padding-left: 1rem;
}
.service-item-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.service-num {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--red);
    min-width: 2.5rem;
}
.service-name {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--white);
    transition: color 0.2s;
}
.service-item:hover .service-name {
    color: var(--red);
}
.service-desc {
    font-size: 0.88rem;
    color: rgba(245, 242, 236, 0.4);
    max-width: 420px;
    line-height: 1.6;
}
.service-arrow {
    color: rgba(245, 242, 236, 0.2);
    font-size: 1.4rem;
    transition:
        color 0.2s,
        transform 0.2s;
}
.service-item:hover .service-arrow {
    color: var(--red);
    transform: translateX(6px);
}

/* ── VERTICALS ── */
#verticals {
    background: var(--cream);
}
.verticals-header {
    margin-bottom: 4rem;
}
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}
.vertical-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.vertical-card:hover {
    background: var(--black);
}
.vertical-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}
.vertical-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}
.vertical-card:hover h3 {
    color: var(--white);
}
.vertical-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--grey);
    transition: color 0.3s;
}
.vertical-card:hover p {
    color: rgba(245, 242, 236, 0.55);
}
.vertical-card .vert-tag {
    margin-top: 1.5rem;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    transition:
        background 0.2s,
        color 0.2s;
}
.vertical-card:hover .vert-tag {
    background: var(--red);
    color: var(--white);
}

/* ── STATS ── */
#stats {
    background: var(--red);
    padding: 5rem 5vw;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
}
.stat-card {
    background: var(--red);
    padding: 3rem 2.5rem;
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 6rem);
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.6rem;
}

/* ── CLIENTS ── */
#clients {
    background: var(--black);
    padding: 5rem 5vw;
}
.clients-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.clients-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
}
.clients-count {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.client-slot {
    background: var(--grey-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    min-height: 90px;
    transition: background 0.2s;
}
.client-slot:hover {
    background: #222;
}
.client-slot img {
    max-width: 100%;
    /*! max-height: 40px; */
    /*! object-fit: contain; */
    /*! filter: brightness(0) invert(1); */
    opacity: 1;
    transition: opacity 0.2s;
}
.client-slot:hover img {
    opacity: 0.85;
}
/* ── CONTACT ── */
#contact {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.contact-left {
}
.contact-left .section-title {
    margin-bottom: 1.5rem;
}
.contact-left p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--grey);
    margin-bottom: 3rem;
}
.contact-info-list {
    list-style: none;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--grey-light);
}
.contact-info-item:first-child {
    border-top: 1px solid var(--grey-light);
}
.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.9rem;
}
.contact-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.3rem;
}
.contact-info-value {
    font-size: 0.95rem;
    color: var(--black);
    text-decoration: none;
    line-height: 1.5;
}
.contact-info-value:hover {
    color: var(--red);
}

.contact-right {
}
.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 2rem;
}
.form-row {
    margin-bottom: 1.5rem;
}
.form-row label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.6rem;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 2px;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--red);
}
.form-row textarea {
    resize: none;
    min-height: 130px;
}
.form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1.1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.form-submit:hover {
    background: var(--red);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top {
    padding: 5rem 5vw 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}
.footer-brand .brand-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}
.footer-brand .brand-logo span {
    color: var(--red);
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245, 242, 236, 0.45);
    max-width: 280px;
    margin-bottom: 2rem;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    color: rgba(245, 242, 236, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.social-link:hover {
    border-color: var(--red);
    color: var(--white);
    background: var(--red);
}
.footer-col h5 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.8rem;
}
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(245, 242, 236, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-bottom {
    padding: 1.5rem 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.3);
}
.footer-bottom p a {
    color: rgba(245, 242, 236, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom p a:hover {
    color: var(--red);
}

/* ── MOBILE MENU ── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    padding-top: 24%;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin: 1rem 0;
    position: relative;
}

.mobile-nav ul li a {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav ul li a:hover {
    color: var(--red);
}

/* Mobile Dropdown */
.mobile-nav .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0.5rem;
}

.mobile-nav .dropdown-menu li {
    margin: 0.5rem 0;
}

.mobile-nav .dropdown-menu a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
}

/* Open Dropdown */
.mobile-nav .dropdown.active .dropdown-menu {
    max-height: 400px;
}

/* Optional arrow */
.mobile-nav .dropdown > a::after {
    content: " +";
    font-size: 1.2rem;
}

.mobile-nav .dropdown.active > a::after {
    content: " −";
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 5vw;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
}

/* Open Dropdown */
.mobile-nav .dropdown.active .dropdown-menu {
    max-height: 500px;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 5vw;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
}
/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;   
}
.container-v2{    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.container-v3{    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

a{
    text-decoration: none;
}



/* HERO — SMO variant */
.hero.v2 {
    background: var(--black);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero.v2 .hero-bg-text {
    position: absolute;
    right: -1%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(140px, 18vw, 260px);
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
.hero.v2 .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24, 119, 242, 0.12);
    border: 1px solid rgb(205, 70, 60);
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 28px;
}
.hero.v2 .hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.hero.v2 .hero-sub {
    color: rgba(244, 241, 235, 0.6);
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 640px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.75;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hero.v2 .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero.v2 .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}
.hero.v2 .hero-stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red);
    line-height: 1;
}
.hero.v2 .hero-stat-label {
    font-size: 11px;
    color: rgba(244, 241, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}
@media (max-width: 700px) {
    .pillar-row {
        grid-template-columns: 1fr;
    }
}
.pillar {
    background: var(--white);
    padding: 48px 36px;
}
.pillar-num {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    margin-bottom: -12px;
}
.pillar h3 {
    font-family: var(--font-display);
    font-size: 30px;
    margin-bottom: 12px;
}
.pillar p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}
.pillar.featured {
    background: var(--black);
    border-bottom: 3px solid var(--accent);
}
.pillar.featured .pillar-num {
    color: var(--accent);
    opacity: 0.2;
}
.pillar.featured h3 {
    color: var(--offwhite);
}
.pillar.featured p {
    color: rgba(244, 241, 235, 0.55);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin-top: 40px;
}
.platform-card {
    background: white;
    padding: 28px 20px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}
.platform-card:hover {
    border-bottom-color: var(--accent);
}
.platform-icon {
    font-size: 28px;
    margin-bottom: 12px;
}
.platform-name {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 6px;
}
.platform-desc {
    font-size: 12px;
    color: var(--muted);
}
.d2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 88px);
    line-height: 1.1;
    color: var(--black);
    text-transform: none;
}
.d3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 60px);
    line-height: 0.95;
    text-transform: none;
}
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 12px;
}
.section-body {
    max-width: 560px;
    margin-top: 16px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
}

.eyebrow.blue {
    color: var(--accent);
}
.eyebrow.light {
    color: var(--amber);
}
.intro-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 780px) {
    .intro-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.intro-highlight {
    background: var(--black);
    padding: 32px;
    margin-top: 32px;
    border-left: 3px solid var(--accent);
}
.intro-highlight p {
    font-size: 15px;
    color: rgba(244, 241, 235, 0.7);
    line-height: 1.85;
}
.intro-highlight strong {
    color: var(--amber);
    font-weight: 600;
}
.stat-quad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.stat-tile {
    background: var(--white);
    padding: 28px 22px;
    border: 1px solid var(--border);
}
.stat-tile-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--accent);
    line-height: 1;
}
.stat-tile-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.benefit-card {
    background: var(--white);
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(12, 12, 12, 0.1);
}
.benefit-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s;
}
.benefit-card:hover::after {
    width: 100%;
}
.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.svc-card {
    background: var(--white);
    padding: 36px 28px;
    border-top: 3px solid transparent;
    transition: border-color 0.2s;
}
.svc-card:hover {
    border-top-color: var(--accent);
}
.svc-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.svc-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
}
.svc-card ul {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}
.svc-card ul li {
    font-size: 13px;
    color: var(--muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-card ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}
.service-tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
@media (max-width: 700px) {
    .service-tab-grid {
        grid-template-columns: 1fr;
    }
}
.section-dark {
    background: var(--black);
}
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 780px) {
    .steps-row {
        grid-template-columns: 1fr 1fr;
    }
}
.step {
    padding: 40px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.step:last-child {
    border-right: none;
}
.step-count {
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(227, 227, 227, 0.12);
    line-height: 1;
    margin-bottom: -8px;
}
.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--offwhite);
    margin-bottom: 10px;
}
.step-body {
    font-size: 13px;
    color: rgba(244, 241, 235, 0.45);
    line-height: 1.7;
}
.section-header {
    margin-bottom: 52px;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.roi-card {
    background: var(--mid);
    padding: 32px 24px;
    position: relative;
}
.roi-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}
.roi-before-label {
    font-size: 11px;
    color: rgba(244, 241, 235, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.roi-before-val {
    font-size: 18px;
    font-weight: 300;
    color: rgba(244, 241, 235, 0.35);
    margin: 4px 0 20px;
}
.roi-after-label {
    font-size: 11px;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.roi-after-val {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--offwhite);
    line-height: 1;
}
.roi-note {
    font-size: 11px;
    color: rgba(244, 241, 235, 0.35);
    margin-top: 8px;
}

.faq-list {
    max-width: 760px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    user-select: none;
    gap: 16px;
}
.faq-q:hover {
    color: var(--accent);
}
.faq-icon {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    font-family: monospace;
    font-weight: 300;
    transition: transform 0.25s;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
    max-height 0.35s ease,
    padding 0.35s ease;
    
    color: var(--muted);
    line-height: 1.8;
    padding-bottom: 0;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq-a p{
    font-size: 15px;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.text-center{
    text-align: center;
}

.cta-band {
    background: var(--mid);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "ENGAGE";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 220px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}
.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 68px);
    color: white;
    line-height: 0.95;
    margin-bottom: 20px;
    position: relative;
}
.cta-band .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
}
.contact-form {
    background: white;
    padding: 40px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.form-row {
    margin-bottom: 14px;
}
.form-row input,
.form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background: white;
    color: var(--black);
    transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus {
    border-color: var(--accent);
}
.form-note {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
}
#form-thanks {
    display: none;
    text-align: center;
    padding: 48px 32px;
}
#form-thanks .thanks-num {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--amber);
    line-height: 1;
}
#form-thanks p {
    color: white;
    font-size: 15px;
    line-height: 1.75;
    margin-top: 12px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.testi-card {
    background: white;
    padding: 32px;
    border-top: 3px solid var(--accent);
}
.testi-stars {
    color: var(--amber);
    font-size: 13px;
    margin-bottom: 14px;
}
.testi-quote p{
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testi-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}
.testi-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.xlink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
}
.xlink-card {
    background: var(--mid);
    padding: 28px 22px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    border-bottom: 2px solid transparent;
}
.xlink-card:hover {
    background: #3a3a3a;
    border-bottom-color: var(--accent);
}
.xlink-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(244, 241, 235, 0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.xlink-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--offwhite);
}
.xlink-arrow {
    float: right;
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
}
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    /*clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);*/
}

.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}
.mb-10{
    margin-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}


/* ── WHO WE HELP ── */
.industry-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 40px;
}
.ind-chip {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 18px 16px;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.ind-chip:hover {
    border-color: var(--red);
    background: white;
}
.ind-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}
.ind-desc {
    font-size: 11px;
    color: var(--muted);
}

.justify-content-center {
  justify-content: center !important;
}
.pb-0{
    padding-bottom: 0px !important;
}

/* ── STORY SECTION ── */
#story {
    padding: 8rem 5vw;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8rem;
    align-items: start;
}
.story-left {
    position: sticky;
    top: 120px;
}
.story-big-year {
    font-family: var(--font-display);
    font-size: clamp(6rem, 12vw, 12rem);
    color: var(--grey-light);
    line-height: 1;
    margin-bottom: 1rem;
}
.story-left .section-title {
    margin-bottom: 1.5rem;
}
.story-left p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 2rem;
}
.story-right {
}
.story-block {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--grey-light);
}
.story-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.story-block-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.story-block h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.story-block p {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1rem;
}
.story-block p:last-child {
    margin-bottom: 0;
}
.story-block p strong {
    color: var(--black);
    font-weight: 600;
}
.story-pullquote {
    border-left: 3px solid var(--red);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--white);
}
.story-pullquote p {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--black);
    font-style: italic;
}

/* ── VALUES ── */
#values {
    background: var(--black);
    padding: 8rem 5vw;
}
.values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.values-intro {
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 242, 236, 0.45);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
}
.value-card {
    background: var(--grey-dark);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.value-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.value-card:hover::after {
    transform: scaleX(1);
}
.value-card:hover {
    background: #222;
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}
.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.value-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245, 242, 236, 0.5);
}
.value-card p strong {
    color: rgba(245, 242, 236, 0.85);
}

/* ── TIMELINE ── */
#timeline {
    background: var(--cream);
    padding: 8rem 5vw;
}
.timeline-header {
    margin-bottom: 5rem;
}
.timeline-track {
    position: relative;
    padding-left: 3rem;
}
.timeline-track::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--grey-light);
}
.timeline-item {
    position: relative;
    padding-bottom: 4rem;
    padding-left: 3rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -3.4rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: 50%;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.timeline-item:hover .timeline-dot {
    border-color: var(--red);
    background: var(--red);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--red);
    margin-bottom: 0.8rem;
}
.timeline-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey);
    max-width: 600px;
}
/* ── TEAM ── */
#team {
    background: var(--black);
    padding: 8rem 5vw;
}
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.team-intro {
    max-width: 380px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245, 242, 236, 0.45);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
}
.team-card {
    background: var(--grey-dark);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: background 0.3s;
}
.team-card:hover {
    background: #222;
}
.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--black);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--red);
    border: 1px solid rgba(232, 40, 26, 0.3);
}
.team-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.team-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
}
.team-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245, 242, 236, 0.4);
}

/* ── MANIFESTO ── */
#manifesto {
    background: var(--red);
    padding: 8rem 5vw;
    position: relative;
    overflow: hidden;
}
.manifesto-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 22rem);
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
}
.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-content .section-label {
    justify-content: center;
}
.manifesto-content .section-label-line {
    background: rgba(255, 255, 255, 0.4);
}
.manifesto-content .section-label-text {
    color: rgba(255, 255, 255, 0.7);
}
.manifesto-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 3.5rem);
    line-height: 1.25;
    color: var(--white);
    font-style: italic;
    margin: 2rem 0 3rem;
}
.manifesto-attribution {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ── WHY US ── */
#why {
    background: var(--cream);
    padding: 8rem 5vw;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
}
.why-left {
}
.why-list {
    list-style: none;
    margin-top: 2rem;
}
.why-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--grey-light);
    transition: padding-left 0.3s;
}
.why-item:first-child {
    border-top: 1px solid var(--grey-light);
}
.why-item:hover {
    padding-left: 0.5rem;
}
.why-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--grey-light);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    transition: color 0.3s;
}
.why-item:hover .why-num {
    color: rgba(232, 40, 26, 0.3);
}
.why-item h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.why-item p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--grey);
}
.why-right {
    position: sticky;
    top: 120px;
}
.why-cta-box {
    background: var(--black);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.why-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}
.why-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.why-cta-box h3 em {
    color: var(--red);
    font-style: italic;
}
.why-cta-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245, 242, 236, 0.5);
    margin-bottom: 2.5rem;
}
.why-proof-row {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
}
.why-proof-item {
}
.why-proof-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}
.why-proof-num span {
    color: var(--red);
}
.why-proof-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.3);
    margin-top: 0.3rem;
}

/* ── CTA BANNER ── */
#cta-banner {
    background: var(--black);
    padding: 7rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.cta-banner-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.02em;
}
.cta-banner-text h2 span {
    color: var(--red);
}
.cta-banner-text p {
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 242, 236, 0.45);
    max-width: 500px;
}
.white{
    color: #fff !important;
}

/* LEGAL SPECIFIC */
.legal-hero {
    padding: 6rem 3rem 3rem;
}
.legal-hero h1 {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: -0.03em;
}
.legal-hero p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}
.legal-hero p span {
    color: var(--brand-red);
}
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}
.legal-sidebar {
    padding: 2.5rem 1.5rem;
    background: var(--brand-dark);
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    border-right: 1px solid #1e1e1e;
}
.sidebar-nav {
    list-style: none;
}
.sidebar-nav li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.sidebar-nav li a:hover {
    color: #fff;
    background: #1a1a1a;
}
.sidebar-nav li a.active-link {
    color: var(--brand-red);
    background: #1a0005;
}
.legal-content {
    padding: 3rem 4rem 4rem;
    max-width: 780px;
}
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--brand-line);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
}
.legal-section:last-child {
    border-bottom: none;
}
.legal-section h2 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}
.legal-section h3 {
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brand-dark);
    margin: 1.5rem 0 0.5rem;
}
.legal-section p,
.legal-section li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}
.legal-section ul {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}
.legal-section ul li {
    margin-bottom: 0.4rem;
}
.legal-highlight {
    background: #fff5f6;
    border-left: 3px solid var(--brand-red);
    padding: 1rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #555;
}


/* FEATURED POST */
.featured-wrap {
    padding: 3rem 3rem 0;
}
.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 1.5rem;
    display: block;
}
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    transition: all 0.25s;
    text-decoration: none;
}
.featured-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--brand-red);
}
.featured-img {
    background: var(--brand-dark);
    min-height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0008 50%, #0a0a0a 100%);
}
.featured-img-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: repeating-linear-gradient(
        45deg,
        var(--brand-red) 0,
        var(--brand-red) 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 24px 24px;
}
.featured-img-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 5rem;
    color: #fff;
    opacity: 0.12;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1;
    padding: 2rem;
}
.featured-cat-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 20px;
}
.featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.featured-meta time {
    font-size: 0.8rem;
    color: var(--brand-muted);
}
.featured-meta span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand-muted);
    display: inline-block;
}
.featured-meta span i,
.featured-meta time i{
    color: var(--brand-red);
}
.blog-card-meta .time{
    
    font-size: 0.8rem;    
    color: var(--brand-muted);
    display: contents !important;
}
.read-time {
    font-size: 0.8rem;    
    color: var(--brand-muted);
    display: contents !important;
}
.featured-body h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.featured-body p {
    font-size: 0.95rem;
    color: var(--brand-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-red);
    text-decoration: none;
    transition: gap 0.2s;
}
.read-more:hover {
    gap: 12px;
}
.read-more svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.featured-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-line);
}
.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}
.author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-dark);
}
.author-role {
    font-size: 0.75rem;
    color: var(--brand-muted);
}

/* BLOG GRID */
.blog-grid-section {
    padding: 2.5rem 3rem 4rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    transition: all 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-red);
}
.blog-card-img {
    height: 180px;
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img-bg {
    position: absolute;
    inset: 0;
}
.blog-card-img-txt {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #fff;
    opacity: 0.1;
    letter-spacing: 0.04em;
}
.card-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 20px;
}
.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}
.blog-card-meta time {
    font-size: 0.75rem;
    color: var(--brand-muted);
}
.blog-card-meta span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand-muted);
    display: inline-block;
}
.blog-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--brand-dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.blog-card p {
    font-size: 0.87rem;
    color: var(--brand-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--brand-line);
    margin-top: auto;
}
.mini-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.62rem;
    color: #fff;
    flex-shrink: 0;
}
.mini-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brand-dark);
}

/* SIDEBAR STRIP */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 0 3rem 4rem;
    align-items: start;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 80px;
}
.sidebar-block {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    padding: 1.5rem;
}
.sidebar-block h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--brand-line);
}
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.topic-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid var(--brand-line);
    color: var(--brand-muted);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.topic-tag:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}
.popular-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-line);
    text-decoration: none;
}
.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.popular-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brand-line);
    line-height: 1;
    flex-shrink: 0;
    min-width: 24px;
}
.popular-post h5 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-dark);
    line-height: 1.4;
    margin-bottom: 3px;
    transition: color 0.2s;
}
.popular-post:hover h5 {
    color: var(--brand-red);
}
.popular-post time {
    font-size: 0.75rem;
    color: var(--brand-muted);
}
.newsletter-block {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}
.newsletter-block h4 {
    color: #fff;
    border-bottom-color: #2a2a2a;
}
.newsletter-block p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.newsletter-block input {
    width: 100%;
    padding: 11px 14px;
    background: #111;
    border: 1.5px solid #2a2a2a;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    outline: none;
    margin-bottom: 10px;
}
.newsletter-block input::placeholder {
    color: #444;
}
.newsletter-block input:focus {
    border-color: var(--brand-red);
}
.btn-sm {
    background: var(--brand-red);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 11px 20px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.2s;
}
.btn-sm:hover {
    background: #c4001f;
}
.stat-row {
    display: flex;
    justify-content: space-between;
}
.stat-item {
    text-align: center;
}
.stat-item .sv {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--brand-red);
    letter-spacing: 0.02em;
}
.stat-item .sl {
    font-size: 0.72rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* LOAD MORE */
.load-more-wrap {
    text-align: center;
    padding: 0 3rem 4rem;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 13px 36px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--brand-dark);
    color: #fff;
}

/* CTA */
.blog-cta {
    background: var(--brand-dark);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-cta::before {
    content: "GROW";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 18rem;
    color: #ffffff04;
    white-space: nowrap;
    pointer-events: none;
}
.blog-cta h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: 0.04em;
    position: relative;
}
.blog-cta h2 em {
    color: var(--brand-red);
    font-style: normal;
}
.blog-cta p {
    color: #666;
    margin: 1rem auto 2rem;
    max-width: 400px;
    font-weight: 300;
    position: relative;
}
.btn-primary {
    background: var(--brand-red);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 32px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-primary:hover {
    background: #c4001f;
    transform: translateY(-1px);
}



/* ── HERO ── */
.post-hero {
    min-height: 90vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5vw 7vh;
    position: relative;
    overflow: hidden;
}
.post-hero-img {
    position: absolute;
    inset: 0;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.post-hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.55) 40%,
        rgba(10, 10, 10, 0.88) 75%,
        rgba(10, 10, 10, 0.97) 100%
    );
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}
.hero-accent-line {
    position: absolute;
    top: 0;
    left: 5vw;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red) 40%, transparent);
    opacity: 0.5;
    z-index: 3;
}

.post-hero-content {
    position: relative;
    z-index: 4;
    max-width: 860px;
}
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.post-breadcrumb a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.post-breadcrumb a:hover {
    color: var(--white);
}
.post-breadcrumb .sep {
    color: rgba(245, 242, 236, 0.25);
    font-size: 0.65rem;
}
.post-breadcrumb .current {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.post-category-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.post-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 780px;
}
.post-hero-title em {
    color: var(--red);
    font-style: italic;
}

.post-meta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.author-info-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}
.author-info-role {
    font-size: 0.75rem;
    color: rgba(245, 242, 236, 0.45);
}
.meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}
.meta-item {
    font-size: 0.78rem;
    color: rgba(245, 242, 236, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}
.meta-item svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

/* ── ARTICLE LAYOUT ── */
.article-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5vw 6rem;
    align-items: start;
}

/* ── ARTICLE BODY ── */
.article-body {
    min-width: 0;
}

.article-lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--grey-light);
}

.article-body h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
}
.article-body h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}
.article-body p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}
.article-body strong {
    color: var(--black);
    font-weight: 600;
}
.article-body a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 40, 26, 0.3);
    transition: border-color 0.2s;
}
.article-body a:hover {
    border-color: var(--red);
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.5rem 1.4rem;
}
.article-body li {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 0.4rem;
}
.article-body li::marker {
    color: var(--red);
}

/* Pull quote */
.pull-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--red);
    background: rgba(232, 40, 26, 0.04);
    border-radius: 0 6px 6px 0;
}
.pull-quote p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--black);
    margin: 0;
    font-style: italic;
}
.pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey);
    font-style: normal;
}

/* Callout box */
.callout {
    background: var(--black);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.callout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
}
.callout-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.callout p {
    color: rgba(245, 242, 236, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.callout strong {
    color: var(--white);
}

/* Step list */
.step-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    counter-reset: steps;
}
.step-list li {
    counter-increment: steps;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--grey-light);
    margin: 0;
}
.step-list li:last-child {
    border-bottom: none;
}
.step-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem;
}
.step-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.35rem;
}
.step-content p {
    font-size: 0.95rem;
    margin: 0;
    color: #555;
}

/* Stat highlight */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--grey-light);
    border-radius: 8px;
    overflow: hidden;
    margin: 2.5rem 0;
}
.stat-cell {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.stat-cell-val {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--red);
    letter-spacing: 0.02em;
    line-height: 1;
    display: block;
}
.stat-cell-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
    display: block;
}

/* Share + Tags */
.article-footer {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-light);
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}
.article-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 2px;
    border: 1px solid var(--grey-light);
    color: var(--grey);
    text-decoration: none;
    transition: all 0.2s;
}
.article-tag:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.share-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.share-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey);
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
}
.share-btn:hover {
    background: var(--red);
    color: var(--white);
}

/* Author bio */
.author-bio {
    margin-top: 3rem;
    background: var(--black);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.author-bio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.author-bio-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.author-bio-role {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.author-bio-text p{
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.65;
    margin: 10px auto 0px;
}

/* ── SIDEBAR ── */
.post-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-block {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    padding: 1.5rem;
}
.sidebar-block-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--grey-light);
}

/* TOC */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-list li + li {
    margin-top: 0.5rem;
}
.toc-list a {
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
    transition: color 0.2s;
}
.toc-list a:hover,
.toc-list a.active {
    color: var(--red);
}
.toc-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--grey-light);
    flex-shrink: 0;
    margin-top: 0;
}

/* Progress */
.reading-progress {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
}
.reading-progress-bar {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.1s linear;
}

/* Related posts */
.related-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--grey-light);
    text-decoration: none;
}
.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.related-post-thumb {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--black);
    flex-shrink: 0;
    overflow: hidden;
}
.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.related-post h5 {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 4px;
    transition: color 0.2s;
}
.related-post:hover h5 {
    color: var(--red);
}
.related-post time {
    font-size: 0.72rem;
    color: var(--grey);
}

/* CTA sidebar */
.sidebar-cta {
    background: var(--black);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid #1e1e1e;
}
.sidebar-cta-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.sidebar-cta h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.sidebar-cta p {
    font-size: 0.82rem;
    color: rgba(245, 242, 236, 0.45);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.sidebar-cta-btn {
    display: block;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 20px;
    border-radius: 2px;
    transition: background 0.2s;
}
.sidebar-cta-btn:hover {
    background: var(--red-dark);
}

/* ── BOTTOM CTA ── */
.post-cta {
    background: var(--black);
    padding: 6rem 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.post-cta::before {
    content: "GROW";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
}
.post-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.post-cta-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--red);
}
.post-cta-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.post-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1.25rem;
    position: relative;
}
.post-cta h2 em {
    color: var(--red);
    font-style: normal;
}
.post-cta p {
    font-size: 1rem;
    color: rgba(245, 242, 236, 0.45);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    position: relative;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 15px 36px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
}
.cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 40, 26, 0.35);
}
.cta-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}


cs-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.cs-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
}
.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-red);
}
.cs-card-header {
    padding: 2rem 2rem 1.5rem;
}
.cs-card-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fff0f2;
    color: var(--brand-red);
    margin-bottom: 1rem;
}
.cs-card h3 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.cs-card p {
    font-size: 0.9rem;
    color: var(--brand-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}
.cs-metrics {
    padding: 1.5rem 2rem;
    background: var(--brand-off);
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--brand-line);
}
.cs-metric {
    flex: 1;
}
.cs-metric .val {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--brand-red);
    letter-spacing: -0.03em;
    line-height: 1;
}
.cs-metric .lbl {
    font-size: 0.72rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}
.cs-cta {
    padding: 4rem 3rem;
    background: var(--brand-dark);
    text-align: center;
}
.cs-cta h2 {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.cs-cta h2 em {
    color: var(--brand-red);
    font-style: normal;
}
.cs-cta p {
    color: #888;
    margin: 1rem auto 2rem;
    max-width: 400px;
    font-weight: 300;
}
.cs-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.cs-modal-body {
    padding: 2rem 2.5rem;
}
.cs-modal-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cs-modal-metric {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.25rem;
    background: var(--brand-off);
    border-radius: 8px;
    border: 1px solid var(--brand-line);
}
.cs-modal-metric .mv {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--brand-red);
    letter-spacing: -0.03em;
}
.cs-modal-metric .ml {
    font-size: 0.75rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.cs-modal-section {
    margin-bottom: 1.5rem;
}
.cs-modal-section h4 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}
.cs-modal-section p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
}
.cs-modal-section ul {
    padding-left: 1.25rem;
}
.cs-modal-section ul li {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 5px;
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.contact-form-wrap {
    padding: 4rem 3rem;
    background: var(--brand-off);
}
.contact-info-wrap {
    padding: 4rem 3rem;
    background: #fff;
    border-left: 1px solid var(--brand-line);
}
.contact-form-wrap h2,
.contact-info-wrap h2 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--brand-line);
    border-radius: 6px;
    padding: 12px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    color: var(--brand-dark);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-detail h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    margin-bottom: 4px;
}
.contact-detail p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-dark);
}
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
}
.industry-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    background: var(--brand-off);
    border: 1px solid var(--brand-line);
    color: var(--brand-muted);
}


/* Modal Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Box */
.custom-modal-content {
    background: #000;
    color: #fff;
    max-width: 700px;
    width: 100%;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    border: 3px solid var(--brand-line);
}

/* Close Button */
.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Title */
.custom-title {
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-modal-content {
        padding: 20px;
        margin: 30px auto;
    }

    .custom-title {
        font-size: 22px;
    }
}


/* HERO */
.cs-hero {
    min-height: 92vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 7rem 5vw 6vh;
    position: relative;
    overflow: hidden;
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}
.hero-accent-line {
    position: absolute;
    top: 0;
    left: 5vw;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red) 40%, transparent);
    opacity: 0.4;
}
.hero-bg-text {
    position: absolute;
    right: -1rem;
    bottom: -3rem;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 22rem);
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 0.02em;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--red);
}
.hero-eyebrow-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.hero-tag {
    display: inline-block;
    background: rgba(232, 40, 26, 0.15);
    border: 1px solid rgba(232, 40, 26, 0.3);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 10rem);
    line-height: 0.92;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}
.hero-headline .outline {
    -webkit-text-stroke: 1px rgba(245, 242, 236, 0.25);
    color: transparent;
}
.hero-headline .red {
    color: var(--red);
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
    justify-content: center;
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hero-meta-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.3);
}
.hero-meta-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(245, 242, 236, 0.75);
}
.hero-meta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* MARQUEE */
.marquee-wrap {
    background: var(--red);
    overflow: hidden;
    padding: 0.85rem 0;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 2.5rem;
    opacity: 0.9;
}
.marquee-track span.dot {
    color: rgba(255, 255, 255, 0.4);
    padding: 0;
    font-size: 0.7rem;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* METRICS BAND */
.metrics-band {
    background: var(--black);
    padding: 4rem 5vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.metric-block {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}
.metric-block:last-child {
    border-right: none;
}
.metric-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    width: 24px;
    height: 2px;
    background: var(--red);
}
.metric-val {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}
.metric-val span {
    color: var(--red);
}
.metric-lbl {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.35);
    margin-top: 0.6rem;
}
.metric-sub {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.4);
    margin-top: 0.4rem;
    font-weight: 300;
    font-style: italic;
}

/* SECTIONS */
section {
    padding: 7rem 5vw;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label-line {
    width: 32px;
    height: 1px;
    background: var(--red);
}
.section-label-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--black);
}
.section-title.white {
    color: var(--white);
}
.section-title em {
    color: var(--red);
    font-style: italic;
}

/* SITUATION */
.situation {
    background: var(--cream);
}
.situation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}
.situation-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
    margin-top: 1.5rem;
}
.situation-desc strong {
    color: var(--black);
    font-weight: 600;
}
.pain-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    border-left: 3px solid var(--red);
}
.pain-icon {
    width: 32px;
    height: 32px;
    background: rgba(232, 40, 26, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.pain-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}
.pain-text strong {
    color: var(--black);
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.before-card {
    background: var(--black);
    border-radius: 12px;
    padding: 2.5rem;
    position: sticky;
    top: 90px;
}
.before-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.before-card-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.before-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.before-stat-row:last-child {
    border-bottom: none;
}
.bsr-label {
    font-size: 0.82rem;
    color: rgba(245, 242, 236, 0.5);
}
.bsr-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: rgba(245, 242, 236, 0.25);
    letter-spacing: 0.04em;
}
.bsr-val.zero {
    color: rgba(232, 40, 26, 0.6);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0;
}

/* ERA DIVIDER — unique to this case study */
.era-divider {
    background: var(--grey-dark);
    padding: 3rem 5vw;
    display: flex;
    align-items: center;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.era-block {
    flex: 1;
}
.era-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}
.era-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}
.era-desc {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.45);
    margin-top: 0.5rem;
    font-weight: 300;
    line-height: 1.6;
}
.era-arrow {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--red);
    opacity: 0.5;
}

/* APPROACH */
.approach {
    background: var(--black);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}
.service-tile {
    padding: 2.5rem 2rem;
    background: var(--black);
    position: relative;
    transition: background 0.3s;
}
.service-tile:hover {
    background: #111;
}
.service-tile.featured {
    background: #0f0f0f;
    border: 1px solid rgba(232, 40, 26, 0.2);
}
.service-tile.featured:hover {
    background: #141414;
}
.featured-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(232, 40, 26, 0.1);
    border: 1px solid rgba(232, 40, 26, 0.25);
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 1rem;
}
.service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: 0.02em;
}
.service-icon {
    width: 42px;
    height: 42px;
    background: rgba(232, 40, 26, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}
.service-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}
.service-desc {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.45);
    line-height: 1.7;
    font-weight: 300;
}
.service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.service-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 40, 26, 0.8);
    background: rgba(232, 40, 26, 0.08);
    border: 1px solid rgba(232, 40, 26, 0.2);
    padding: 3px 9px;
    border-radius: 3px;
}

/* POST-COVID SPOTLIGHT */
.covid-section {
    background: var(--cream);
}
.covid-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}
.covid-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    font-weight: 300;
}
.covid-body strong {
    color: var(--black);
    font-weight: 600;
}
.covid-body p + p {
    margin-top: 1.25rem;
}
.covid-shifts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.covid-shift {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.covid-shift::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
}
.covid-shift-before {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.3rem;
}
.covid-shift-after {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
}
.covid-shift-text {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.6;
}
.covid-impact-card {
    background: var(--black);
    border-radius: 12px;
    padding: 2.5rem;
    position: sticky;
    top: 90px;
}
.covid-impact-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.covid-impact-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.covid-stat {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.covid-stat:last-child {
    border-bottom: none;
}
.covid-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}
.covid-stat-num span {
    color: var(--red);
}
.covid-stat-lbl {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.3);
    margin-top: 0.3rem;
}
.covid-stat-note {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.4);
    margin-top: 0.25rem;
    font-weight: 300;
    font-style: italic;
}

/* TIMELINE */
.timeline-section {
    background: var(--black);
}
.timeline {
    margin-top: 3.5rem;
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--red), rgba(232, 40, 26, 0.1));
}
.timeline-entry {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 3rem;
}
.timeline-entry:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -2.45rem;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--black);
    box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.2);
}
.timeline-dot.large {
    width: 16px;
    height: 16px;
    left: -2.6rem;
    top: 2px;
    box-shadow: 0 0 0 5px rgba(232, 40, 26, 0.15);
}
.timeline-phase {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
}
.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.timeline-body {
    font-size: 0.88rem;
    color: rgba(245, 242, 236, 0.5);
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
}
.timeline-body strong {
    color: rgba(245, 242, 236, 0.8);
    font-weight: 500;
}
.timeline-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.timeline-pill {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 3px;
}
.timeline-pill.hot {
    color: rgba(232, 40, 26, 0.8);
    background: rgba(232, 40, 26, 0.08);
    border-color: rgba(232, 40, 26, 0.2);
}

/* INSIGHT BAND */
.insight-band {
    background: var(--red);
    padding: 5rem 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.insight-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    color: var(--white);
    line-height: 1.25;
    font-style: italic;
}
.insight-quote::before {
    content: "\201C";
    color: rgba(255, 255, 255, 0.3);
}
.insight-quote::after {
    content: "\201D";
    color: rgba(255, 255, 255, 0.3);
}
.insight-context {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.insight-stat {
    display: flex;
    gap: 2.5rem;
}
.istat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}
.istat-lbl {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.3rem;
}

/* RESULTS */
.results-section {
    background: var(--cream);
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}
.results-wins {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.win-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.win-item:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(232, 40, 26, 0.08);
}
.win-check {
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
}
.win-text {
    font-size: 0.92rem;
    color: #333;
    line-height: 1.65;
}
.win-text strong {
    color: var(--black);
    font-weight: 700;
}
.roi-card {
    background: var(--black);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: sticky;
    top: 90px;
    overflow: hidden;
}
.roi-card::before {
    content: "ROI";
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    font-family: var(--font-display);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}
.roi-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.roi-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.roi-headline span {
    color: var(--red);
}
.roi-sub {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.4);
    font-weight: 300;
    margin-bottom: 2rem;
}
.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.roi-row:last-child {
    border-bottom: none;
}
.roi-row-label {
    font-size: 0.82rem;
    color: rgba(245, 242, 236, 0.45);
}
.roi-row-val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.roi-row-val.green {
    color: #4ade80;
}
.roi-row.highlight {
    background: rgba(232, 40, 26, 0.08);
}
.roi-row.highlight .roi-row-val {
    color: var(--red);
}

/* WEBSITES */
.websites-section {
    background: var(--black);
}
.websites-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}
.website-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.25s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 280px;
}
.website-card::after {
    content: "↗";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    transition: color 0.2s;
}
.website-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.website-card:hover::after {
    color: var(--red);
}
.website-type {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}
.website-url {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.04em;
    word-break: break-all;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.website-purpose {
    font-size: 0.82rem;
    color: rgba(245, 242, 236, 0.4);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA */
.cs-cta {
    background: var(--black);
    padding: 8rem 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cs-cta::before {
    content: "YOUR TURN";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 20rem);
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
}
.cs-cta-inner {
    position: relative;
    z-index: 2;
}
.cs-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cs-cta-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--red);
}
.cs-cta-eyebrow-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}
.cs-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.cs-cta h2 em {
    color: var(--red);
    font-style: italic;
}
.cs-cta p {
    color: rgba(245, 242, 236, 0.5);
    font-size: 1rem;
    font-weight: 300;
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}