/*
Theme Name: Ronin Communications
Theme URI: https://ronincomms.com
Author: Justin Smith
Author URI: https://ronincomms.com
Description: Custom one-page WordPress theme for Ronin Communications.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: ronin-comms
*/
/* ═══════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════ */

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

:root {
    --black:   #000000;
    --white:   #ffffff;
    --crimson: #9B1C1C;
    --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: var(--black);
    border-bottom: 1px solid var(--crimson);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
}

.nav-logo {
    height: 26px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

nav .nav-links > li {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 260px;
    padding: 10px;
    background: rgba(0,0,0,0.96);
    border: 1px solid rgba(155,28,28,0.8);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.nav-submenu a {
    display: block;
    padding: 12px 14px;
    color: rgba(255,255,255,0.52);
    line-height: 1.4;
}

.nav-submenu a:hover {
    color: var(--white);
    background: rgba(155,28,28,0.16);
}

.nav-item-has-menu:hover .nav-submenu,
.nav-item-has-menu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-cta {
    color: var(--crimson) !important;
}

.nav-cta:hover {
    color: var(--white) !important;
}

.nav-book {
    background: var(--crimson);
    color: var(--white) !important;
    padding: 12px 16px;
    letter-spacing: 0.13em !important;
    transition: background 0.2s, color 0.2s;
}

.nav-book:hover {
    background: var(--white);
    color: var(--black) !important;
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.25s;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

.btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 44px;
    cursor: pointer;
    border: none;
    line-height: 1;
    transition: background 0.22s, color 0.22s;
}

.btn-crimson {
    background: var(--crimson);
    color: var(--white);
}

.btn-crimson:hover {
    background: var(--white);
    color: var(--black);
}

/* ═══════════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════════ */

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

#hero {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 48px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--crimson);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson);
}

.hero-headline {
    font-size: clamp(36px, 7.2vw, 96px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    max-width: 1020px;
    margin-bottom: 48px;
}

.hero-rule {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.hero-rule-line {
    width: 64px;
    height: 2px;
    background: var(--crimson);
    flex-shrink: 0;
}

.hero-sub {
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    max-width: 580px;
    margin-bottom: 14px;
}

.hero-support {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.42);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 56px;
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.hero-cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.32);
    font-style: italic;
    font-weight: 400;
}

/* Ghost background text */
.hero-bg-word {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-52%);
    font-size: clamp(120px, 23vw, 340px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.016);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    text-transform: uppercase;
    z-index: 1;
    white-space: nowrap;
}

/* Bottom attribute strip */
.hero-strip {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 48px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.hero-strip-item {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    white-space: nowrap;
}

.hero-strip-sep {
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */

#services {
    background: var(--white);
    color: var(--black);
    padding: 120px 48px 100px;
}

.services-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.services-headline {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.04;
    margin-bottom: 28px;
    color: var(--black);
}

.headline-keep {
    white-space: nowrap;
}

.services-body {
    font-size: 15px;
    line-height: 1.72;
    font-weight: 400;
    color: rgba(0,0,0,0.58);
    max-width: 580px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-col {
    position: relative;
    min-height: 360px;
    padding: 38px 32px 42px;
    border: 1px solid rgba(0,0,0,0.12);
    background:
        linear-gradient(135deg, rgba(155,28,28,0.08), transparent 42%),
        var(--white);
    overflow: hidden;
    transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s;
}

.service-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
}

.service-col::after {
    content: attr(data-service);
    position: absolute;
    right: 22px;
    bottom: -18px;
    color: rgba(0,0,0,0.035);
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.service-col:hover {
    transform: translateY(-6px);
    border-color: rgba(155,28,28,0.36);
    box-shadow: 0 22px 44px rgba(0,0,0,0.08);
}

.service-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(155,28,28,0.34);
    background: rgba(155,28,28,0.06);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--crimson);
    margin-bottom: 34px;
}

.service-title {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.28;
    margin-bottom: 22px;
    color: var(--black);
}

.service-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(0,0,0,0.58);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   WHO WE SERVE
═══════════════════════════════════════════ */

#audience {
    background: var(--black);
    color: var(--white);
    padding: 120px 48px;
}

.audience-inner {
    max-width: 840px;
}

.audience-headline {
    font-size: clamp(26px, 3.8vw, 52px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.04;
    color: var(--white);
}

.pull-quote {
    font-size: clamp(16px, 2vw, 21px);
    font-style: italic;
    font-weight: 400;
    color: var(--crimson);
    line-height: 1.58;
    margin: 56px 0;
    padding-left: 28px;
    border-left: 2px solid var(--crimson);
    max-width: 680px;
}

.pull-quote-attr {
    display: block;
    margin-top: 16px;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(155,28,28,0.65);
    text-transform: uppercase;
}

.industries {
    margin-bottom: 52px;
}

.industry-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.2s;
}

.industry-row:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.industry-row:hover {
    border-color: rgba(255,255,255,0.15);
}

.industry-dot {
    width: 5px;
    height: 5px;
    background: var(--crimson);
    flex-shrink: 0;
}

.industry-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.industry-row:hover .industry-name {
    color: rgba(255,255,255,0.85);
}

.audience-close {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */

#about {
    background: var(--white);
    color: var(--black);
    padding: 120px 48px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 88px;
    align-items: center;
    max-width: 1120px;
}

.about-spacer {
    display: none;
}

.about-stack {
    display: contents;
}

.about-image-wrap {
    width: 336px;
    height: 336px;
    margin-bottom: 0;
    justify-self: end;
    position: relative;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    isolation: isolate;
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(155,28,28,0.4);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(155,28,28,0.15), transparent 42%),
        rgba(0,0,0,0.035);
    box-shadow: 0 28px 70px rgba(0,0,0,0.13);
    pointer-events: none;
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    background: var(--white);
    pointer-events: none;
}

.about-image-wrap picture {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 50%;
}

.about-image-wrap img {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 8px solid var(--white);
    filter: grayscale(1) contrast(1.18);
    box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px;
}

.founder-name {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--black);
}

.founder-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.founder-rule {
    width: 40px;
    height: 2px;
    background: var(--crimson);
    margin-bottom: 44px;
}

.about-bio {
    font-size: 15px;
    line-height: 1.78;
    color: rgba(0,0,0,0.68);
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 500px;
}

.about-bio:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   WHY RONIN
═══════════════════════════════════════════ */

#why {
    background: var(--black);
    color: var(--white);
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}

#why::before {
    content: "RONIN";
    position: absolute;
    top: 88px;
    right: 32px;
    font-size: clamp(96px, 16vw, 220px);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    color: rgba(255,255,255,0.018);
    pointer-events: none;
}

.why-header {
    position: relative;
    z-index: 1;
    margin-bottom: 56px;
    max-width: 720px;
}

.why-headline {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.04;
    color: var(--white);
}

.why-table {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    max-width: 1120px;
    counter-reset: why-item;
}

.why-row {
    counter-increment: why-item;
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(180px, 0.9fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: center;
    padding: 26px 30px;
    border: 1px solid rgba(255,255,255,0.09);
    background:
        linear-gradient(135deg, rgba(155,28,28,0.13), rgba(155,28,28,0.025) 34%, rgba(255,255,255,0.025)),
        var(--black);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.why-row::before {
    content: "0" counter(why-item);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(155,28,28,0.55);
    background: rgba(155,28,28,0.14);
    color: var(--crimson);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.why-row::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--crimson);
    transform: scaleY(0.34);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.why-row.reveal {
    transition: opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.24s ease,
                box-shadow 0.24s ease,
                background 0.24s ease;
}

.why-row:hover,
.why-row.reveal.is-visible:hover {
    transform: translateX(6px);
    border-color: rgba(155,28,28,0.44);
    background:
        linear-gradient(135deg, rgba(155,28,28,0.2), rgba(155,28,28,0.04) 36%, rgba(255,255,255,0.035)),
        var(--black);
    box-shadow: 0 20px 46px rgba(0,0,0,0.35);
}

.why-row:hover::after {
    transform: scaleY(1);
}

.why-attr {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.45;
}

.why-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    transition: color 0.2s ease;
}

.why-row:hover .why-desc {
    color: rgba(255,255,255,0.76);
}

.why-not {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    font-weight: 400;
    text-align: right;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */

#contact {
    background: var(--white);
    color: var(--black);
    padding: 120px 48px;
}

.contact-inner {
    max-width: 1480px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.52fr) minmax(760px, 1.48fr);
    gap: 56px;
    align-items: start;
}

.contact-copy {
    max-width: 520px;
}

.contact-headline {
    font-size: clamp(26px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 28px;
    color: var(--black);
}

.contact-sub {
    font-size: 15px;
    color: rgba(0,0,0,0.52);
    font-weight: 400;
    line-height: 1.68;
    margin-bottom: 0;
    max-width: 440px;
}

.contact-timing {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(0,0,0,0.38);
    font-style: italic;
    font-weight: 400;
}

.contact-email {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(0,0,0,0.42);
    font-weight: 400;
}

.contact-email a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.22);
    transition: color 0.2s, border-color 0.2s;
}

.contact-email a:hover {
    color: var(--crimson);
    border-color: var(--crimson);
}

.calendar-widget {
    position: relative;
    width: 100%;
    min-height: 1040px;
    background: transparent;
    overflow: visible;
    border: 0;
    box-shadow: none;
}

.calendar-widget::before {
    display: none;
}

.calendar-widget iframe {
    display: block;
    width: 100%;
    height: 1040px;
    min-height: 1040px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.legal-header {
    background: var(--black);
    color: var(--white);
    padding: 140px 48px 88px;
    position: relative;
    overflow: hidden;
}

.legal-header::after {
    content: "RONIN";
    position: absolute;
    right: -2vw;
    bottom: -5vw;
    font-size: clamp(100px, 20vw, 280px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.018);
    line-height: 1;
    pointer-events: none;
}

.legal-header-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.legal-title {
    font-size: clamp(34px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 0.98;
    color: var(--white);
    margin-bottom: 24px;
}

.legal-effective {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--crimson);
}

.legal-body {
    background: var(--white);
    padding: 80px 48px 112px;
}

.legal-content {
    max-width: 760px;
}

.legal-content h2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 52px 0 18px;
    color: var(--black);
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.78;
    color: rgba(0,0,0,0.7);
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 0 0 24px 22px;
}

.legal-content a {
    color: var(--crimson);
    text-decoration: none;
    border-bottom: 1px solid rgba(155,28,28,0.24);
}

.legal-content a:hover {
    border-color: var(--crimson);
}

.service-page-hero {
    background: var(--black);
    color: var(--white);
    padding: 140px 48px 92px;
    position: relative;
    overflow: hidden;
}

.service-page-hero::after {
    content: "";
    position: absolute;
    right: -6vw;
    bottom: -10vw;
    width: clamp(340px, 48vw, 760px);
    aspect-ratio: 1;
    background: url("assets/brand_assets/Ronin Icon PNG Large.png") center / contain no-repeat;
    filter: invert(1);
    opacity: 0.026;
    pointer-events: none;
}

.service-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 940px;
}

.service-page-title {
    font-size: clamp(36px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 0.98;
    color: var(--white);
    margin-bottom: 28px;
}

.service-page-sub {
    max-width: 620px;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.48;
    color: rgba(255,255,255,0.72);
}

.service-page-body {
    background: var(--white);
    padding: 88px 48px 110px;
}

.service-page-inner {
    max-width: 1120px;
}

.service-page-intro {
    max-width: 760px;
    margin-bottom: 70px;
}

.service-page-intro p {
    font-size: 17px;
    line-height: 1.78;
    color: rgba(0,0,0,0.68);
    margin-bottom: 20px;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 74px;
}

.service-card-grid.two-up {
    grid-template-columns: repeat(2, 1fr);
}

.service-page-card {
    position: relative;
    min-height: 300px;
    padding: 34px 30px 38px;
    border: 1px solid rgba(0,0,0,0.12);
    background:
        linear-gradient(135deg, rgba(155,28,28,0.08), transparent 44%),
        var(--white);
    overflow: hidden;
}

.service-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
}

.service-page-card::after {
    content: attr(data-card);
    position: absolute;
    right: 20px;
    bottom: -18px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(0,0,0,0.035);
    line-height: 1;
}

.service-page-card h2,
.service-page-card h3 {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.34;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 18px;
}

.service-page-card p,
.service-page-card li {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0,0,0,0.6);
}

.service-page-card ul {
    position: relative;
    z-index: 1;
    margin: 0 0 0 18px;
}

.service-page-card a {
    position: relative;
    z-index: 1;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.service-page-card a:hover {
    color: var(--black);
}

.service-page-band {
    background: var(--black);
    color: var(--white);
    padding: 56px;
    margin-bottom: 76px;
}

.service-page-band h2 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.06;
    margin-bottom: 20px;
}

.service-page-band p {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
}

.service-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 34px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.service-page-cta p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(0,0,0,0.58);
}

.service-guide-nav {
    margin-bottom: 84px;
}

.service-guide-nav .service-page-card {
    min-height: 190px;
}

.service-guide-nav .service-page-card a {
    position: relative;
    z-index: 1;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.service-guide-nav .service-page-card a:hover {
    color: var(--crimson);
}

.service-guide-section {
    max-width: 820px;
    padding: 64px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.service-guide-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.service-guide-nav + .service-guide-section {
    border-top: none;
    padding-top: 0;
}

.service-guide-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 18px;
}

.service-guide-section h2 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1.06;
    color: var(--black);
    margin-bottom: 24px;
}

.service-guide-section p {
    font-size: 16px;
    line-height: 1.78;
    color: rgba(0,0,0,0.68);
    margin-bottom: 20px;
}

.guide-reading-list {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.12);
}

.guide-reading-list li {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(0,0,0,0.14);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.46);
}

.guide-badge.cornerstone {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--white);
}

.guide-badge.supporting {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.guide-reading-list a {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    transition: color 0.2s;
}

.guide-reading-list a:hover {
    color: var(--crimson);
}

.service-guide-callout {
    max-width: 820px;
    padding: 42px;
    margin: 24px 0 64px;
    background:
        linear-gradient(135deg, rgba(155,28,28,0.08), transparent 44%),
        var(--white);
    border: 1px solid rgba(0,0,0,0.12);
}

.service-guide-callout h2,
.service-guide-callout h3 {
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-guide-callout p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0,0,0,0.6);
    margin-bottom: 24px;
}

.ronin-method-diagram {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0;
}

.ronin-method-stage {
    position: relative;
    min-height: 190px;
    padding: 26px 22px 30px;
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(155,28,28,0.7);
    overflow: hidden;
}

.ronin-method-stage::after {
    content: attr(data-stage);
    position: absolute;
    right: 12px;
    bottom: -18px;
    color: rgba(255,255,255,0.05);
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
}

.ronin-method-stage span {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--crimson);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ronin-method-stage h3 {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ronin-method-stage p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.58);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

footer {
    background: var(--black);
    border-top: 1px solid var(--crimson);
    padding: 48px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
    filter: invert(1);
    flex-shrink: 0;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.28);
    font-style: italic;
    font-weight: 400;
}

.footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   SECONDARY CTA LINK (hero)
═══════════════════════════════════════════ */

.hero-secondary-cta {
    margin-top: 20px;
    font-size: 13px;
}

.hero-secondary-cta a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color 0.2s, border-color 0.2s;
    font-style: italic;
}

.hero-secondary-cta a:hover {
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   LINKEDIN ICON (nav + footer)
═══════════════════════════════════════════ */

.nav-linkedin {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-linkedin {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
    margin-top: 10px;
}

.footer-linkedin:hover {
    color: var(--white);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-legal a {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════ */

#case-studies {
    background: var(--white);
    color: var(--black);
    padding: 120px 48px 100px;
}

.cases-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.cases-headline {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.04;
    margin-bottom: 20px;
    color: var(--black);
}

.cases-note {
    font-size: 13px;
    color: rgba(0,0,0,0.4);
    font-style: italic;
    font-weight: 400;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.case-col {
    position: relative;
    min-height: 430px;
    padding: 38px 32px 42px;
    border: 1px solid rgba(0,0,0,0.12);
    background:
        linear-gradient(135deg, rgba(155,28,28,0.08), transparent 42%),
        var(--white);
    overflow: hidden;
    transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s;
}

.case-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
}

.case-col::after {
    content: attr(data-case);
    position: absolute;
    right: 22px;
    bottom: -18px;
    color: rgba(0,0,0,0.035);
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.case-col:hover {
    transform: translateY(-6px);
    border-color: rgba(155,28,28,0.36);
    box-shadow: 0 22px 44px rgba(0,0,0,0.08);
}

.case-industry {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(155,28,28,0.24);
    background: rgba(155,28,28,0.05);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 20px;
}

.case-challenge {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--black);
}

.case-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(0,0,0,0.55);
    font-weight: 400;
    margin-bottom: 32px;
}

.case-metric {
    position: relative;
    z-index: 1;
    font-size: clamp(46px, 5.5vw, 76px);
    font-weight: 900;
    color: var(--crimson);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.case-metric-label {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.case-metric-secondary {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: var(--crimson);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */

#process {
    background: var(--black);
    color: var(--white);
    padding: 120px 48px;
}

.process-header {
    max-width: 700px;
    margin-bottom: 72px;
}

.process-headline {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.04;
    color: var(--white);
}

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

.process-step {
    position: relative;
    min-height: 360px;
    padding: 38px 30px 42px;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(145deg, rgba(155,28,28,0.2) 0%, rgba(155,28,28,0.05) 36%, rgba(255,255,255,0.025) 100%),
        var(--black);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
    opacity: 0.9;
}

.process-step::after {
    content: attr(data-step);
    position: absolute;
    right: 18px;
    bottom: -20px;
    z-index: -1;
    font-size: 104px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.035);
    pointer-events: none;
}

.process-step.reveal {
    transition: opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.24s ease,
                box-shadow 0.24s ease,
                background 0.24s ease;
}

.process-step:hover,
.process-step.reveal.is-visible:hover {
    transform: translateY(-6px);
    border-color: rgba(155,28,28,0.48);
    background:
        linear-gradient(145deg, rgba(155,28,28,0.26) 0%, rgba(155,28,28,0.07) 38%, rgba(255,255,255,0.035) 100%),
        var(--black);
    box-shadow: 0 24px 54px rgba(0,0,0,0.34);
}

.process-num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(155,28,28,0.5);
    background: rgba(155,28,28,0.16);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--crimson);
    margin-bottom: 34px;
}

.process-title {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 16px;
    color: var(--white);
}

.process-desc {
    position: relative;
    z-index: 1;
    font-size: 13px;
    line-height: 1.72;
    color: rgba(255,255,255,0.58);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════ */

.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.booking-modal.is-open {
    display: flex;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
}

.booking-modal-box {
    position: relative;
    z-index: 1;
    width: min(860px, 92vw);
    height: min(680px, 88vh);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--black);
    border-bottom: 1px solid var(--crimson);
    flex-shrink: 0;
}

.booking-modal-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.booking-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    font-family: var(--font);
    transition: color 0.2s;
}

.booking-modal-close:hover {
    color: var(--white);
}

.booking-modal-box iframe {
    flex: 1;
    border: none;
    width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════
   FOCUS STYLES (accessibility)
═══════════════════════════════════════════ */

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

.btn:focus-visible {
    outline: 2px solid rgba(255,255,255,0.8);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }

@media (max-width: 1120px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-copy {
        max-width: 620px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */

@media (max-width: 960px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 8px 0 16px;
        gap: 0;
        border-bottom: 1px solid var(--crimson);
        display: none;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 24px;
        font-size: 11px;
    }

    .nav-submenu {
        position: static;
        min-width: 0;
        padding: 0 0 8px;
        border: none;
        background: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu a {
        padding: 12px 24px 12px 40px;
        color: rgba(255,255,255,0.38);
    }

    .nav-item-has-menu:hover .nav-submenu,
    .nav-item-has-menu:focus-within .nav-submenu {
        transform: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        padding: 60px 24px 60px;
    }

    .hero-strip {
        padding: 16px 24px;
        gap: 20px;
    }

    .hero-bg-word {
        display: none;
    }

    #services {
        padding: 80px 24px 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-col {
        min-height: auto;
        padding: 34px 28px 40px !important;
    }

    #audience {
        padding: 80px 24px;
    }

    #about {
        padding: 80px 24px;
    }

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

    .about-spacer {
        display: none;
    }

    .about-stack {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .about-image-wrap {
        width: 276px;
        height: 276px;
        justify-self: start;
        order: 2;
    }

    .about-image-wrap img {
        width: 240px;
        height: 240px;
    }

    #why {
        padding: 80px 24px;
    }

    .why-row {
        grid-template-columns: 42px 1fr;
        gap: 10px 18px;
        padding: 24px 22px;
    }

    .why-row::before {
        grid-row: 1 / span 2;
        width: 36px;
        height: 36px;
    }

    .why-desc {
        grid-column: 2;
    }

    #case-studies {
        padding: 80px 24px 80px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-col {
        min-height: auto;
        padding: 34px 28px 40px !important;
    }

    #process {
        padding: 80px 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
        padding: 34px 28px 40px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
    }

    .process-step:last-child {
        border: 1px solid rgba(255,255,255,0.1) !important;
    }

    #contact {
        padding: 100px 24px;
    }

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

    .calendar-widget,
    .calendar-widget iframe {
        min-height: 720px;
    }

    .legal-header {
        padding: 120px 24px 72px;
    }

    .legal-body {
        padding: 56px 24px 80px;
    }

    .service-page-hero {
        padding: 120px 24px 72px;
    }

    .service-page-body {
        padding: 56px 24px 84px;
    }

    .service-card-grid,
    .service-card-grid.two-up {
        grid-template-columns: 1fr;
    }

    .service-page-card {
        min-height: auto;
    }

    .service-page-band {
        padding: 38px 28px;
    }

    .service-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-guide-nav {
        margin-bottom: 54px;
    }

    .service-guide-section {
        padding: 48px 0;
    }

    .guide-reading-list li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-guide-callout {
        padding: 32px 26px;
    }

    .ronin-method-diagram {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 40px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-legal {
        justify-content: flex-start;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */

@media (max-width: 600px) {
    .nav-book {
        margin: 8px 20px 0;
        text-align: center;
    }

    .hero-headline {
        font-size: clamp(32px, 11vw, 52px);
        letter-spacing: 0.02em;
    }

    .headline-keep {
        white-space: normal;
    }

    .hero-inner {
        padding: 48px 20px 56px;
    }

    .hero-strip {
        padding: 14px 20px;
    }

    .hero-strip-sep {
        display: none;
    }

    #services,
    #audience,
    #about,
    #why,
    #contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-image-wrap {
        width: min(276px, 100%);
        height: auto;
        aspect-ratio: 1;
        margin-left: 0;
    }

    .about-image-wrap img {
        width: calc(100% - 36px);
        height: calc(100% - 36px);
    }

    #why::before {
        display: none;
    }

    .why-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-row::before,
    .why-desc {
        grid-column: auto;
    }

    .calendar-widget,
    .calendar-widget iframe {
        min-height: 680px;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* WordPress content fallback pages */
.wp-content-page {
    min-height: 100vh;
    padding: 120px 48px;
    background: var(--white);
    color: var(--black);
}

.wp-content-page .entry-title {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.04;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.wp-content-page .entry-content {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(0,0,0,0.66);
}

/* WordPress blog index and post templates */
.blog-index,
.blog-single {
    background: var(--white);
    color: var(--black);
}

.blog-hero {
    min-height: 58vh;
    padding: 160px 48px 96px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-hero-inner {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.blog-hero-word {
    position: absolute;
    top: 52%;
    right: -2%;
    transform: translateY(-50%);
    font-size: clamp(110px, 20vw, 300px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.018);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-hero-title {
    max-width: 780px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(34px, 6vw, 78px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 0.98;
    text-transform: uppercase;
}

.blog-hero-sub {
    max-width: 560px;
    color: rgba(255,255,255,0.56);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.blog-feed {
    padding: 104px 48px 120px;
    background: var(--white);
}

.blog-feed-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    max-width: 1180px;
    margin-bottom: 56px;
}

.blog-feed-header .section-label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.blog-feed-header p {
    max-width: 460px;
    color: rgba(0,0,0,0.52);
    font-size: 14px;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 1180px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-left: 1px solid rgba(0,0,0,0.1);
}

.blog-card {
    min-height: 420px;
    padding: 36px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background 0.2s, border-color 0.2s;
}

.blog-card:hover {
    background: rgba(0,0,0,0.025);
    border-color: rgba(0,0,0,0.18);
}

.blog-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 28px;
    overflow: hidden;
    background: var(--black);
}

.blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
    transition: transform 0.28s;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.03);
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--crimson);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-card-title {
    margin-bottom: 20px;
    font-size: clamp(22px, 2.1vw, 32px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.05;
    text-transform: uppercase;
}

.blog-card-title a {
    color: var(--black);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--crimson);
}

.blog-card-excerpt {
    margin-bottom: 32px;
    color: rgba(0,0,0,0.58);
    font-size: 14px;
    line-height: 1.72;
}

.blog-card-link,
.blog-back-link {
    color: var(--crimson);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-card-link {
    margin-top: auto;
}

.blog-card-link:hover,
.blog-back-link:hover {
    color: var(--black);
}

.blog-pagination {
    max-width: 1180px;
    margin-top: 48px;
}

.blog-pagination .nav-links {
    position: static;
    display: flex;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(0,0,0,0.14);
    color: rgba(0,0,0,0.54);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-pagination .current,
.blog-pagination a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.blog-empty {
    max-width: 680px;
    padding: 72px 0;
}

.blog-empty h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.04;
    text-transform: uppercase;
}

.blog-empty p {
    max-width: 460px;
    margin-bottom: 36px;
    color: rgba(0,0,0,0.58);
    font-size: 15px;
    line-height: 1.7;
}

.blog-post-header {
    padding: 150px 48px 92px;
    background: var(--black);
    color: var(--white);
}

.blog-post-header .blog-card-meta {
    margin-top: 32px;
    margin-bottom: 24px;
}

.blog-post-title {
    max-width: 980px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(36px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 0.98;
    text-transform: uppercase;
}

.blog-post-dek {
    max-width: 680px;
    color: rgba(255,255,255,0.58);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.6;
}

.blog-post-media {
    margin: 0;
    background: var(--black);
}

.blog-post-media img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
}

.blog-post-content {
    max-width: 780px;
    padding: 88px 48px 96px;
    color: rgba(0,0,0,0.72);
    font-size: 18px;
    line-height: 1.82;
}

.blog-post-content > * {
    margin-bottom: 28px;
}

.blog-post-content > *:last-child {
    margin-bottom: 0;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: 52px;
    color: var(--black);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-post-content h2 {
    font-size: clamp(26px, 3vw, 42px);
}

.blog-post-content h3 {
    font-size: clamp(20px, 2vw, 28px);
}

.blog-post-content a {
    color: var(--crimson);
}

.blog-post-content blockquote {
    margin: 48px 0;
    padding-left: 28px;
    border-left: 2px solid var(--crimson);
    color: var(--black);
    font-size: clamp(20px, 2.4vw, 28px);
    font-style: italic;
    line-height: 1.55;
}

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 24px;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 780px;
    padding: 0 48px 120px;
}

.blog-post-footer .btn {
    color: var(--white);
}

@media (max-width: 960px) {
    .blog-hero,
    .blog-post-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blog-feed {
        padding: 80px 24px 96px;
    }

    .blog-feed-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .blog-card {
        min-height: auto;
        padding: 36px 0;
        border-right: 0;
    }

    .blog-post-content {
        padding: 72px 24px 84px;
    }

    .blog-post-footer {
        padding: 0 24px 96px;
    }
}

@media (max-width: 600px) {
    .blog-hero {
        min-height: auto;
        padding: 120px 20px 72px;
    }

    .blog-feed {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-card-meta {
        gap: 10px;
    }

    .blog-post-header {
        padding: 120px 20px 72px;
    }

    .blog-post-content {
        padding: 64px 20px 72px;
        font-size: 16px;
    }

    .blog-post-footer {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
}
