/*
Theme Name: Traceline Digital — V2
Author: Traceline Digital
Description: Traceline Digital — unified agency website stylesheet.
Version: 4.1
Text Domain: traceline-digital
*/

/* =========================================================
   01. DESIGN SYSTEM
========================================================= */

:root {
    --bg: #080808;
    --surface: #111111;
    --surface-2: #181818;
    --line: #292929;

    --text: #f7f7f5;
    --muted: #a4a4a0;

    --accent: #ff6a00;
    --accent-dark: #e95d00;

    --light: #0b0b0b;
    --light-2: #141414;

    --ink: #f7f7f5;
    --ink-muted: #9a9a95;

    --white: #ffffff;

    --max: 1240px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.16);

    --transition: 220ms ease;
}


/* =========================================================
   02. RESET
========================================================= */

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

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

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


/* =========================================================
   03. GLOBAL LAYOUT
========================================================= */

.site-main {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

/* Compatibility with existing PHP classes */
.section.light,
.section-light {
    background: #090909;
    color: var(--text);
}

.section.dark,
.section.dark-section,
.section-dark {
    background: var(--bg);
    color: var(--text);
}

.section-accent-dark {
    background: #101010;
    color: var(--text);
}

.section.light p,
.section-light p {
    color: var(--muted);
}

.section.dark p,
.section.dark-section p,
.section-dark p {
    color: var(--muted);
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--accent);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-title {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 72px);
}

.lead {
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.5;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    color: var(--text);
}

.site-logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--white);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.04em;
    transition:
        transform var(--transition),
        background var(--transition);
}

.site-logo:hover .site-logo-mark {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-logo-text small {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.24em;
}

.main-nav {
    margin-left: auto;
}

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

.main-nav-list li {
    margin: 0;
    padding: 0;
}

.main-nav-list a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition);
}

.main-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.main-nav-list a:hover,
.main-nav-list .current-menu-item > a,
.main-nav-list .current_page_item > a,
.main-nav-list .current-menu-parent > a {
    color: var(--text);
}

.main-nav-list a:hover::after,
.main-nav-list .current-menu-item > a::after,
.main-nav-list .current_page_item > a::after,
.main-nav-list .current-menu-parent > a::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition:
        background var(--transition),
        transform var(--transition);
}

.header-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.header-cta span {
    font-size: 17px;
    line-height: 1;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 4px auto;
    background: currentColor;
    transition: transform var(--transition);
}

.mobile-navigation {
    display: none;
}


/* =========================================================
   05. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 14px 21px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.btn span {
    font-size: 18px;
    line-height: 1;
}

.btn-primary,
.btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover,
.btn.primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #444;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-dark,
.btn.dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.btn-dark:hover,
.btn.dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.text-link span {
    font-size: 17px;
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   06. HERO
========================================================= */

.hero {
    position: relative;
    background: var(--bg);
    color: var(--text);
    padding: 90px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 70px;
    min-height: 620px;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-content .eyebrow {
    margin-bottom: 24px;
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 600;
}

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

.hero-lead {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-location {
    margin-top: 30px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    padding: 20px 25px 60px 0;
}

.growth-card {
    position: relative;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.growth-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.growth-card-content {
    padding: 42px 42px 38px;
}

.growth-eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.growth-card h2 {
    max-width: 390px;
    margin: 0;
    color: var(--text);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.growth-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.growth-results > div {
    min-width: 0;
}

.growth-results strong {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1;
}

.growth-results span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* SIMPLE GROWTH GRAPH */

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.growth-chart span {
    flex: 1;
    min-width: 0;
    background: var(--accent);
    opacity: 0.85;
}

.growth-chart span:nth-child(1) {
    height: 18%;
}

.growth-chart span:nth-child(2) {
    height: 27%;
}

.growth-chart span:nth-child(3) {
    height: 34%;
}

.growth-chart span:nth-child(4) {
    height: 43%;
}

.growth-chart span:nth-child(5) {
    height: 52%;
}

.growth-chart span:nth-child(6) {
    height: 67%;
}

.growth-chart span:nth-child(7) {
    height: 82%;
}

.growth-chart span:nth-child(8) {
    height: 100%;
}





/* =========================================================
   07. EXPERIENCE STRIP
========================================================= */

.experience-strip {
    background: #101010;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-strip-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    overflow: hidden;
}

.experience-strip-inner > span {
    flex-shrink: 0;
    color: #777771;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.experience-strip-inner .experience-label {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   08. INTRO
========================================================= */

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.85fr);
    gap: 100px;
    align-items: center;
}

.section-copy {
    max-width: 650px;
}

.section-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(42px, 5vw, 68px);
}

.section-copy p {
    max-width: 620px;
}

.section.light .section-copy p,
.section-light .section-copy p {
    color: var(--ink-muted);
}

.intro-visual {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ddd8d0;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.25),
        transparent 45%
    );
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.intro-visual:hover .image-frame img {
    transform: scale(1.03);
}

.image-caption {
    display: block;
    margin-top: 12px;
    color: var(--ink-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
}


/* =========================================================
   09. SECTION HEADINGS
========================================================= */

.section-heading-row,
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 65px;
}

.section-heading-description {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.section-light .section-heading-description,
.section.light .section-heading-description {
    color: var(--ink-muted);
}


/* =========================================================
   10. SERVICES
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        background var(--transition),
        transform var(--transition);
}

.section.light .service-card,
.section-light .service-card {
    border-color: #d6d2ca;
}

.service-card:hover {
    background: var(--surface);
    color: var(--text);
}

.section.light .service-card:hover,
.section-light .service-card:hover {
    background: var(--light-2);
    color: var(--ink);
}

.service-number {
    margin-bottom: 65px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-card h3 {
    max-width: 360px;
    margin-bottom: 17px;
    font-size: 27px;
}

.service-card > p {
    max-width: 390px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.section.light .service-card > p,
.section-light .service-card > p {
    color: var(--ink-muted);
}

.service-card ul {
    margin: 15px 0 25px;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 15px;
    color: #858580;
    font-size: 12px;
    line-height: 1.9;
}

.section.light .service-card li,
.section-light .service-card li {
    color: #6f6d68;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.service-link {
    margin-top: auto;
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: color var(--transition);
}

.section.light .service-link,
.section-light .service-link {
    color: var(--ink);
}

.service-link:hover {
    color: var(--accent);
}


/* =========================================================
   11. APPROACH
========================================================= */

.approach-heading {
    align-items: flex-start;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.approach-step {
    min-height: 280px;
    padding: 30px 28px 20px 0;
    border-right: 1px solid var(--line);
}

.approach-step:not(:first-child) {
    padding-left: 28px;
}

.approach-step:last-child {
    border-right: 0;
}

.approach-step > span {
    display: block;
    margin-bottom: 60px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.approach-step h3 {
    margin-bottom: 13px;
    font-size: 25px;
}

.approach-step p {
    max-width: 250px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.section.light .approach-step p,
.section-light .approach-step p {
    color: var(--ink-muted);
}


/* =========================================================
   12. WORK / EXPERIENCE
========================================================= */

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

.work-card {
    min-width: 0;
}

.work-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ddd8d0;
}

.work-image::after {
    content: "VIEW PROJECT →";
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 9px 11px;
    background: var(--accent);
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.work-card:hover .work-image img {
    transform: scale(1.04);
}

.work-card:hover .work-image::after {
    opacity: 1;
    transform: translateY(0);
}

.work-info {
    padding-top: 20px;
}

.tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.work-info h3 {
    margin-bottom: 8px;
    font-size: 25px;
}

.work-info p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 12px;
}


/* =========================================================
   13. PROOF / RESULTS
========================================================= */

.proof-section {
    background: var(--bg);
    color: var(--text);
}

.proof-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: end;
}

.proof-intro {
    max-width: 580px;
}

.proof-intro .section-title {
    margin-bottom: 28px;
}

.proof-intro .lead {
    color: var(--muted);
}

.proof-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.proof-result {
    padding: 30px 20px 20px 0;
    border-right: 1px solid var(--line);
}

.proof-result:not(:first-child) {
    padding-left: 20px;
}

.proof-result:last-child {
    border-right: 0;
}

.proof-result strong {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 55px);
    letter-spacing: -0.05em;
    line-height: 1;
}

.proof-result span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proof-note {
    margin: 55px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #777771;
    font-size: 11px;
}


/* =========================================================
   14. ACADEMY / SPLIT CTA
========================================================= */

.split-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
    align-items: stretch;
    overflow: hidden;
}

.split-cta {
    background: var(--accent);
    color: var(--white);
}

.cta-copy {
    padding: 110px max(40px, calc((100vw - var(--max)) / 2)) 110px 40px;
}

.cta-copy {
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.cta-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(44px, 5vw, 70px);
}

.cta-copy p {
    max-width: 560px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.78);
}

.cta-copy .eyebrow {
    color: var(--white);
}

.cta-art {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: #dedad2;
}

.cta-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.split-cta:hover .cta-art img {
    transform: scale(1.025);
}

.academy-overlay {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 190px;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
}

.academy-overlay span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.academy-overlay strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
}

.academy-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-width: 120px;
    padding: 17px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.academy-badge span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.academy-badge strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
}


/* =========================================================
   15. JOURNAL / BLOG
========================================================= */

.journal-section {
    background: var(--light);
    color: var(--ink);
    border-top: 1px solid #d6d2ca;
}

.journal-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.journal-card,
.post {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.journal-image,
.post-img {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--light-2);
}

.journal-image img,
.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.journal-card:hover .journal-image img,
.post:hover .post-img img {
    transform: scale(1.04);
}

.journal-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(
        135deg,
        #ddd8d0,
        #eeeae3
    );
    color: #77736d;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.journal-content,
.post-body {
    padding-top: 22px;
}

.journal-content h3,
.post-body h3,
.post-title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.15;
}

.journal-content h3 a,
.post-body h3 a,
.post-title a {
    transition: color var(--transition);
}

.journal-content h3 a:hover,
.post-body h3 a:hover,
.post-title a:hover {
    color: var(--accent);
}

.journal-content p,
.post-body p {
    min-height: 52px;
    margin-bottom: 14px;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.65;
}

.journal-empty {
    max-width: 600px;
}


/* Blog-specific compatibility */

.blog-page,
.blog-archive {
    background: var(--light);
    color: var(--ink);
}

.blog-meta,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--ink-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.post-body .tag {
    margin-bottom: 10px;
}


/* =========================================================
   16. PAGE HERO
========================================================= */

.page-hero {
    background: var(--bg);
    color: var(--text);
    padding: 105px 0 95px;
}

.page-hero .container {
    max-width: var(--max);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(48px, 7vw, 88px);
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 650px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   17. FINAL CTA
========================================================= */

.final-cta {
    background: var(--accent);
    color: var(--white);
}

.final-cta-inner {
    max-width: 900px;
    text-align: center;
}

.final-cta .eyebrow {
    color: var(--white);
}

.final-cta h2 {
    max-width: 850px;
    margin-inline: auto;
    font-size: clamp(45px, 6vw, 82px);
}

.final-cta p {
    max-width: 590px;
    margin: 28px auto 35px;
    color: rgba(255,255,255,0.78);
    font-size: 17px;
}

.final-cta .btn-primary {
    background: var(--ink);
    border-color: var(--ink);
}

.final-cta .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
}


/* =========================================================
   18. CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

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

.contact-intro h1,
.contact-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(46px, 5vw, 70px);
}

.contact-intro p {
    color: var(--muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.contact-detail {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.contact-detail span {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 18px;
}

.contact-form {
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    margin-bottom: 22px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    background: #0d0d0d;
    color: var(--text);
    transition:
        border-color var(--transition),
        background var(--transition);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    background: #101010;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666661;
}


/* =========================================================
   19. FOOTER
========================================================= */

.site-footer {
    background: #050505;
    color: var(--text);
    border-top: 1px solid var(--line);
    padding: 85px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 70px;
    padding-bottom: 70px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-tagline {
    max-width: 280px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-column h4 {
    margin-bottom: 22px;
    color: #777771;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    color: #aaa9a4;
    font-size: 12px;
    line-height: 1.5;
}

.footer-links a {
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: #a4a4a0;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.footer-social svg rect,
.footer-social svg circle {
    vector-effect: non-scaling-stroke;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #666661;
    font-size: 10px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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


/* =========================================================
   20. SINGLE ARTICLE — TRACELINE JOURNAL
========================================================= */

/* ---------------------------------------------------------
   ARTICLE PAGE
--------------------------------------------------------- */

.single-article {
    background: var(--light);
    color: var(--ink);
}


/* ---------------------------------------------------------
   ARTICLE HEADER
--------------------------------------------------------- */

.article-top {
    padding: 110px 0 82px;
    background: var(--bg);
    color: var(--text);
}

.article-top-inner {
    width: min(calc(100% - 48px), 950px);
    margin-inline: auto;
}

.article-category {
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-top h1 {
    max-width: 900px;
    margin: 0;
    color: var(--text);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}


/* ---------------------------------------------------------
   ARTICLE META / AUTHOR
--------------------------------------------------------- */

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;

    margin-top: 42px;
    padding-top: 22px;

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

    font-size: 11px;
}

.article-author-name {
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.article-author-role {
    color: var(--muted);
}

.article-author-date {
    color: var(--muted);
}

.article-meta > span {
    color: #666;
}


/* ---------------------------------------------------------
   FEATURED IMAGE
--------------------------------------------------------- */

.article-image {
    width: min(calc(100% - 48px), 1200px);
    margin: -30px auto 0;

    position: relative;
    z-index: 2;
}

.article-image img {
    display: block;
    width: 100%;
    max-height: 720px;

    object-fit: cover;
}


/* ---------------------------------------------------------
   ARTICLE READING AREA
--------------------------------------------------------- */

.article-reading {
    padding: 100px 0 110px;
    background: var(--light);
}

.article-body {
    width: min(calc(100% - 48px), 760px);
    margin-inline: auto;
}


/* ---------------------------------------------------------
   ARTICLE TYPOGRAPHY
--------------------------------------------------------- */

.article-body p {
    margin: 0 0 26px;

    color: #44433f;
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.85;
}

.article-body > p:first-child {
    font-size: 20px;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin: 0 0 30px;
    padding-left: 25px;

    color: #44433f;
    font-size: 18px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 8px;
}


/* ---------------------------------------------------------
   HEADINGS
--------------------------------------------------------- */

.article-body h2 {
    margin: 60px 0 22px;

    color: var(--ink);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.article-body h3 {
    margin: 46px 0 18px;

    color: var(--ink);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}


/* ---------------------------------------------------------
   ARTICLE LINKS
--------------------------------------------------------- */

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body a:hover {
    text-decoration-thickness: 2px;
}


/* ---------------------------------------------------------
   ARTICLE IMAGES
--------------------------------------------------------- */

.article-body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 40px 0;
}


/* ---------------------------------------------------------
   BLOCKQUOTES
--------------------------------------------------------- */

.article-body blockquote {
    margin: 48px 0;
    padding: 28px 32px;

    border-left: 3px solid var(--accent);

    background: #e9e5dd;

    color: var(--ink);

    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
}

.article-body blockquote p {
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


/* ---------------------------------------------------------
   ABOUT TRACELINE / AUTHOR CTA
--------------------------------------------------------- */

.article-author-box {
    margin-top: 90px;
    padding: 48px;

    background: var(--ink);
    color: var(--white);
}

.article-author-box .article-category {
    margin-bottom: 18px;
    color: var(--accent);
}

.article-author-box h3 {
    margin: 0 0 18px;

    color: var(--white);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 34px;
    line-height: 1.1;
}

.article-author-box p {
    max-width: 570px;
    margin-bottom: 30px;

    color: #aaa9a4;
    font-size: 15px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   ARTICLE CTA BUTTON
--------------------------------------------------------- */

.article-author-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 46px;
    padding: 13px 20px;

    background: var(--accent);
    color: var(--white);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-author-box .btn:hover {
    color: var(--white);
    text-decoration: none;
}


/* =========================================================
   SINGLE ARTICLE — TABLET
========================================================= */

@media (max-width: 900px) {

    .article-top {
        padding: 90px 0 72px;
    }

    .article-top h1 {
        font-size: clamp(44px, 8vw, 70px);
    }

    .article-image {
        margin-top: -20px;
    }

    .article-reading {
        padding: 80px 0 90px;
    }

}


/* =========================================================
   SINGLE ARTICLE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .article-top {
        padding: 65px 0 55px;
    }

    .article-top-inner {
        width: min(calc(100% - 32px), 950px);
    }

    .article-category {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .article-top h1 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .article-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;

        margin-top: 30px;
        padding-top: 18px;
    }

    .article-meta > span {
        display: none;
    }

    .article-author-name {
        font-size: 12px;
    }

    .article-author-role,
    .article-author-date {
        font-size: 11px;
    }

    .article-image {
        width: calc(100% - 32px);
        margin-top: -12px;
    }

    .article-image img {
        max-height: 500px;
    }

    .article-reading {
        padding: 65px 0 75px;
    }

    .article-body {
        width: calc(100% - 32px);
    }

    .article-body p {
        font-size: 16px;
        line-height: 1.8;
    }

    .article-body > p:first-child {
        font-size: 18px;
        line-height: 1.75;
    }

    .article-body ul,
    .article-body ol {
        font-size: 16px;
        line-height: 1.75;
    }

    .article-body h2 {
        margin-top: 48px;
        font-size: 31px;
    }

    .article-body h3 {
        margin-top: 38px;
        font-size: 25px;
    }

    .article-body img {
        margin: 30px 0;
    }

    .article-body blockquote {
        margin: 38px 0;
        padding: 22px 22px;
        font-size: 21px;
    }

    .article-author-box {
        margin-top: 65px;
        padding: 32px 25px;
    }

    .article-author-box h3 {
        font-size: 29px;
    }

    .article-author-box p {
        font-size: 14px;
    }

}


/* =========================================================
   SINGLE ARTICLE — SMALL PHONES
========================================================= */

@media (max-width: 420px) {

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

    .article-top h1 {
        font-size: 40px;
    }

    .article-image {
        width: calc(100% - 24px);
    }

    .article-body {
        width: calc(100% - 24px);
    }

    .article-author-box {
        padding: 28px 22px;
    }

}
/* =========================================================
   21. WORDPRESS CONTENT
========================================================= */

.wp-block-image {
    margin: 35px 0;
}

.wp-block-quote {
    margin: 45px 0;
}

.aligncenter {
    margin-inline: auto;
}

.alignleft {
    float: left;
    margin: 0 30px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 30px;
}


/* =========================================================
   22. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .header-inner {
        gap: 20px;
    }

    .main-nav-list {
        gap: 18px;
    }

    .header-cta {
        padding-inline: 13px;
    }

    .hero {
        padding: 75px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        min-height: auto;
    }

    .hero-content {
        max-width: 820px;
    }

    .hero h1 {
        max-width: 820px;
    }

    .hero-visual {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

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

    .intro-visual {
        max-width: 650px;
    }

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

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

    .approach-step:nth-child(2) {
        border-right: 0;
    }

    .approach-step:nth-child(3),
    .approach-step:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .proof-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .split-cta {
        grid-template-columns: 1fr;
    }

    .cta-copy {
        padding: 80px 40px;
    }

    .cta-copy {
        padding-left: max(24px, calc((100vw - var(--max)) / 2));
        padding-right: max(24px, calc((100vw - var(--max)) / 2));
    }

    .cta-art {
        min-height: 500px;
    }

    .journal-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }
}


/* =========================================================
   23. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    .container {
        width: min(calc(100% - 32px), var(--max));
    }

    .section {
        padding: 78px 0;
    }


    /* HEADER */

    .header-inner {
        min-height: 72px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-navigation {
        display: none;
        border-top: 1px solid var(--line);
        background: var(--bg);
    }

    .mobile-navigation.is-open {
        display: block;
    }

    .mobile-navigation nav {
        padding: 15px 16px 25px;
    }

    .mobile-navigation ul {
        list-style: none;
    }

    .mobile-navigation li {
        border-bottom: 1px solid var(--line);
    }

    .mobile-navigation a {
        display: block;
        padding: 16px 0;
        color: var(--text);
        font-family: "Space Grotesk", Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-navigation a:hover {
        color: var(--accent);
    }

    .mobile-navigation-cta {
        margin-top: 20px;
        padding: 15px 17px !important;
        background: var(--accent);
        color: var(--white) !important;
        font-family: Inter, Arial, sans-serif !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: 0.08em;
        text-align: center;
    }


    /* HERO */

    .hero {
        padding: 58px 0 65px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .hero-lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 26px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-location {
        margin-top: 22px;
        font-size: 10px;
    }

    .hero-visual {
        min-height: 350px;
        padding: 0 0 50px;
    }

    .growth-card {
        width: calc(100% - 10px);
        min-height: 330px;
    }

    .growth-card-top {
        padding: 14px 16px;
        font-size: 8px;
    }

    .growth-card-content {
        padding: 30px 22px 26px;
    }

    .growth-card h2 {
        font-size: 29px;
    }

    .growth-results {
        gap: 8px;
        margin-top: 27px;
        padding-top: 20px;
    }

    .growth-results strong {
        font-size: 18px;
    }

    .growth-results span {
        font-size: 7px;
    }

    .growth-chart {
        height: 65px;
        margin-top: 20px;
    }

    .hero-float-card {
        right: 0;
        bottom: 0;
        width: 145px;
        padding: 12px;
    }

    .hero-float-card strong {
        font-size: 13px;
    }

    .hero-float-card small {
        font-size: 7px;
    }


    /* EXPERIENCE STRIP */

    .experience-strip-inner {
        min-height: auto;
        padding: 24px 0;
        justify-content: flex-start;
        gap: 25px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .experience-strip-inner::-webkit-scrollbar {
        display: none;
    }


    /* HEADINGS */

    .section-heading-row,
    .section-head {
        display: block;
        margin-bottom: 45px;
    }

    .section-heading-description {
        margin-top: 20px;
    }

    .section-title {
        font-size: clamp(39px, 10vw, 58px);
    }


    /* INTRO */

    .intro-grid {
        gap: 45px;
    }

    .section-copy h2 {
        font-size: clamp(40px, 10vw, 58px);
    }


    /* SERVICES */

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

    .service-card {
        min-height: auto;
        padding: 28px 24px 32px;
    }

    .service-number {
        margin-bottom: 45px;
    }


    /* APPROACH */

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

    .approach-step,
    .approach-step:not(:first-child) {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .approach-step:first-child {
        padding-top: 28px;
    }

    .approach-step:last-child {
        border-bottom: 0;
    }

    .approach-step > span {
        margin-bottom: 35px;
    }


    /* WORK */

    .work-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .work-image {
        aspect-ratio: 4 / 3;
    }


    /* PROOF */

    .proof-layout {
        gap: 45px;
    }

    .proof-results {
        grid-template-columns: 1fr;
    }

    .proof-result,
    .proof-result:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-result:last-child {
        border-bottom: 0;
    }

    .proof-result strong {
        font-size: 44px;
    }



    /* JOURNAL / BLOG */

    .journal-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-content p,
    .post-body p {
        min-height: 0;
    }


    /* PAGE HERO */

    .page-hero {
        padding: 75px 0 65px;
    }

    .page-hero h1 {
        font-size: clamp(43px, 12vw, 63px);
    }

    .page-hero p {
        font-size: 16px;
    }


    /* CONTACT */

    .contact-grid {
        gap: 45px;
    }

    .contact-form {
        padding: 28px 22px;
    }


    /* FINAL CTA */

    .final-cta h2 {
        font-size: clamp(43px, 11vw, 65px);
    }


    /* FOOTER */

    .site-footer {
        padding: 65px 0 25px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    /* ARTICLE */

    .article-header {
        padding: 75px 0 60px;
    }

    .article-header-inner,
    .article-content {
        width: min(calc(100% - 32px), 760px);
    }

    .article-header h1 {
        font-size: clamp(42px, 11vw, 62px);
    }

    .article-featured {
        width: calc(100% - 32px);
        margin-top: -15px;
    }

    .article-content-section {
        padding: 65px 0;
    }

    .article-content > p,
    .article-content > ul,
    .article-content > ol {
        font-size: 16px;
    }

    .about-author {
        margin-top: 60px;
        padding: 30px 24px;
    }

    .about-author h3 {
        font-size: 29px;
    }
}


/* =========================================================
   24. VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(calc(100% - 24px), var(--max));
    }

    .site-logo-text {
        font-size: 13px;
    }

    .site-logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .growth-results {
        gap: 6px;
    }

    .growth-results strong {
        font-size: 17px;
    }

    .growth-results span {
        font-size: 7px;
    }

    .hero-float-card {
        width: 135px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

/* =========================================================
   25. HOMEPAGE — PREMIUM DARK SYSTEM
========================================================= */

.section:has(.intro-grid),
.section:has(.services-grid),
.section:has(.approach-grid),
.section:has(.work-grid),
.proof-section {
    background:
        radial-gradient(700px 420px at 85% 15%, rgba(255,106,0,.035), transparent 70%),
        #070707;
    color: var(--text);
    border-top: 1px solid rgba(255,255,255,.055);
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.section:has(.intro-grid) .section-copy h2,
.section:has(.services-grid) .section-title,
.section:has(.approach-grid) .section-title,
.section:has(.work-grid) .section-title {
    color: var(--text);
}

.section:has(.intro-grid) .section-copy p,
.section:has(.services-grid) .service-card > p,
.section:has(.approach-grid) .approach-step p,
.section:has(.work-grid) .section-heading-description,
.section:has(.work-grid) .work-info p {
    color: var(--muted);
}

.section:has(.intro-grid) .image-frame,
.section:has(.work-grid) .work-image {
    background: #111;
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 25px 65px rgba(0,0,0,.32);
}

.section:has(.services-grid) .service-card {
    border-color: var(--line);
    background: transparent;
}

.section:has(.services-grid) .service-card:hover {
    background: #111;
    color: var(--text);
}

.section:has(.services-grid) .service-link {
    color: var(--text);
}

.section:has(.work-grid) .work-info h3 {
    color: var(--text);
}

.section:has(.work-grid) .work-card:hover .work-image {
    border-color: rgba(255,106,0,.32);
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* =========================================================
   TRACELINE ACADEMY — STABLE FINAL VERSION
   DO NOT CHANGE THE STRUCTURE
========================================================= */

/* SECTION */
section.academy-section {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    background: #080808 !important;
    overflow: hidden !important;
}


/* =========================================================
   ACADEMY CONTAINER
   FLEXBOX = NO GRID CONFLICTS
========================================================= */

section.academy-section .academy-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    gap: 0 !important;
}


/* =========================================================
   LEFT — ACADEMY
========================================================= */

section.academy-section .academy-content {
    flex: 0 0 45% !important;
    width: 45% !important;
    max-width: 45% !important;

    min-width: 0 !important;
    min-height: 590px !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    padding: 90px 65px 90px 63px !important;

    background:
        radial-gradient(
            600px 450px at 0% 100%,
            rgba(255,255,255,.07),
            transparent 65%
        ),
        linear-gradient(
            145deg,
            #ff7108 0%,
            #f76300 50%,
            #df5100 100%
        ) !important;

    color: #ffffff !important;
}


/* EYEBROW */

section.academy-section .academy-content .eyebrow {
    margin: 0 0 20px !important;

    color: #ffffff !important;

    font-size: 10px !important;
    line-height: 1 !important;

    font-weight: 800 !important;
    letter-spacing: .15em !important;
}


/* HEADLINE */

section.academy-section .academy-content h2 {
    display: block !important;

    max-width: 540px !important;

    margin: 0 0 26px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-family: "Space Grotesk", Arial, sans-serif !important;

    font-size: clamp(44px, 4.4vw, 62px) !important;
    font-weight: 600 !important;

    line-height: 1.01 !important;
    letter-spacing: -.045em !important;
}


/* DESCRIPTION */

section.academy-section .academy-content p {
    display: block !important;

    max-width: 485px !important;

    margin: 0 0 32px !important;

    color: rgba(255,255,255,.82) !important;

    font-family: Inter, Arial, sans-serif !important;

    font-size: 15px !important;
    line-height: 1.65 !important;
}


/* BUTTON */

section.academy-section .academy-content .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    align-self: flex-start !important;

    width: auto !important;

    min-height: 53px !important;

    padding: 0 25px !important;

    background: #080808 !important;

    border: 1px solid #080808 !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 800 !important;

    letter-spacing: .05em !important;

    opacity: 1 !important;
}


/* =========================================================
   RIGHT — SOCIAL PROOF
========================================================= */

section.academy-section .academy-visual {
    flex: 0 0 55% !important;
    width: 55% !important;
    max-width: 55% !important;

    min-width: 0 !important;
    min-height: 590px !important;

    box-sizing: border-box !important;

    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 58px !important;

    background:
        radial-gradient(
            500px 400px at 50% 50%,
            rgba(255,106,0,.045),
            transparent 70%
        ),
        #080808 !important;

    border-left: 1px solid rgba(255,255,255,.08) !important;

    overflow: hidden !important;
}


/* SOCIAL PROOF LABEL */

section.academy-section .academy-visual::before {
    content: "SOCIAL PROOF" !important;

    position: absolute !important;

    top: 27px !important;
    left: 31px !important;

    z-index: 5 !important;

    color: rgba(255,255,255,.40) !important;

    font-family: Inter, Arial, sans-serif !important;

    font-size: 8px !important;
    font-weight: 800 !important;

    letter-spacing: .18em !important;
}


/* IMAGE */

section.academy-section .academy-visual img {
    display: block !important;

    position: relative !important;
    z-index: 2 !important;

    width: 94% !important;
    max-width: 850px !important;

    height: auto !important;

    min-height: 0 !important;
    max-height: 445px !important;

    object-fit: contain !important;

    background: #ffffff !important;

    border: 1px solid rgba(255,255,255,.10) !important;

    box-shadow:
        0 30px 70px rgba(0,0,0,.58),
        0 6px 20px rgba(0,0,0,.25) !important;
}


/* =========================================================
   LEARN / BUILD / GROW
========================================================= */

section.academy-section .academy-badge {
    position: absolute !important;

    right: 24px !important;
    bottom: 22px !important;

    z-index: 10 !important;

    min-width: 100px !important;

    padding: 13px 15px !important;

    background: #ff6500 !important;

    color: #ffffff !important;

    box-shadow:
        0 15px 35px rgba(0,0,0,.40) !important;
}


section.academy-section .academy-badge span {
    display: block !important;

    font-size: 7px !important;
    font-weight: 800 !important;

    letter-spacing: .10em !important;
}


section.academy-section .academy-badge strong {
    display: block !important;

    margin: 3px 0 0 !important;

    color: #ffffff !important;

    font-family: "Space Grotesk", Arial, sans-serif !important;

    font-size: 23px !important;
    line-height: 1 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    section.academy-section .academy-content {
        flex-basis: 45% !important;
        width: 45% !important;
        max-width: 45% !important;

        padding: 70px 32px !important;
    }

    section.academy-section .academy-content h2 {
        font-size: 42px !important;
    }

    section.academy-section .academy-visual {
        flex-basis: 55% !important;
        width: 55% !important;
        max-width: 55% !important;

        min-height: 500px !important;

        padding: 40px 25px !important;
    }

    section.academy-section .academy-visual img {
        width: 95% !important;
        max-height: 390px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    section.academy-section .academy-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    section.academy-section .academy-content {
        flex: none !important;

        width: 100% !important;
        max-width: 100% !important;

        min-height: auto !important;

        padding: 65px 24px !important;
    }

    section.academy-section .academy-content h2 {
        font-size: clamp(40px, 10vw, 56px) !important;
    }

    section.academy-section .academy-visual {
        flex: none !important;

        width: 100% !important;
        max-width: 100% !important;

        min-height: 360px !important;

        padding: 55px 20px 35px !important;

        border-left: 0 !important;
        border-top: 1px solid rgba(255,255,255,.08) !important;
    }

    section.academy-section .academy-visual img {
        width: 100% !important;
        max-height: 285px !important;
    }
}
/* =========================================================
   TRACELINE JOURNAL — PREMIUM DARK EDITORIAL
========================================================= */

.journal-section {
    position: relative !important;

    background:
        radial-gradient(
            800px 500px at 85% 0%,
            rgba(255,106,0,.035),
            transparent 70%
        ),
        #080808 !important;

    color: #f7f7f5 !important;

    border-top: 1px solid rgba(255,255,255,.07) !important;
}


/* =========================================================
   HEADER
========================================================= */

.journal-section .eyebrow {
    color: #ff6500 !important;
}

.journal-section .section-title {
    color: #f7f7f5 !important;
    max-width: 800px !important;
}

.journal-section .section-heading-row {
    align-items: flex-end !important;
    margin-bottom: 58px !important;
}

.journal-section .text-link {
    color: #ff6500 !important;
}

.journal-section .text-link:hover {
    color: #ffffff !important;
}


/* =========================================================
   ARTICLE GRID
========================================================= */

.journal-section .journal-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 26px !important;

    align-items: start !important;
}


/* =========================================================
   ARTICLE CARD
========================================================= */

.journal-section .journal-card {
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    background: transparent !important;

    border: 0 !important;
}


/* =========================================================
   IMAGE
========================================================= */

.journal-section .journal-image {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    aspect-ratio: 1.35 / 1 !important;

    overflow: hidden !important;

    background: #111111 !important;

    border: 1px solid rgba(255,255,255,.09) !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,.28) !important;
}


/* Image itself */

.journal-section .journal-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1),
        filter .4s ease !important;
}


/* Hover */

.journal-section .journal-card:hover .journal-image img {
    transform: scale(1.035) !important;
}


/* Subtle orange edge */

.journal-section .journal-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border: 1px solid transparent;

    transition: border-color .35s ease !important;
}

.journal-section .journal-card:hover .journal-image::after {
    border-color: rgba(255,101,0,.32) !important;
}


/* =========================================================
   CONTENT
========================================================= */

.journal-section .journal-content {
    padding-top: 23px !important;
}


/* Category */

.journal-section .journal-content .tag {
    margin-bottom: 12px !important;

    color: #ff6500 !important;

    font-size: 9px !important;

    font-weight: 800 !important;

    letter-spacing: .13em !important;

    text-transform: uppercase !important;
}


/* Article title */

.journal-section .journal-content h3 {
    margin: 0 0 13px !important;

    color: #f7f7f5 !important;

    font-size: 25px !important;

    line-height: 1.12 !important;

    letter-spacing: -.025em !important;
}

.journal-section .journal-content h3 a {
    color: #f7f7f5 !important;

    text-decoration: none !important;
}

.journal-section .journal-content h3 a:hover {
    color: #ff6500 !important;
}


/* Excerpt */

.journal-section .journal-content p {
    margin: 0 0 19px !important;

    min-height: 0 !important;

    color: #898984 !important;

    font-size: 14px !important;

    line-height: 1.6 !important;
}


/* Read article */

.journal-section .journal-content .text-link {
    display: inline-flex !important;

    align-items: center !important;

    gap: 8px !important;

    color: #f7f7f5 !important;

    font-size: 9px !important;

    font-weight: 800 !important;

    letter-spacing: .08em !important;
}

.journal-section .journal-content .text-link span {
    color: #ff6500 !important;

    transition: transform .25s ease !important;
}

.journal-section .journal-card:hover
.journal-content .text-link span {
    transform: translateX(4px) !important;
}


/* =========================================================
   EMPTY JOURNAL STATE
========================================================= */

.journal-section .journal-empty .journal-placeholder {
    background:
        linear-gradient(
            135deg,
            #111111,
            #181818
        ) !important;

    color: #777771 !important;

    border: 1px solid rgba(255,255,255,.08) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .journal-section .journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .journal-section .section-heading-row {
        margin-bottom: 45px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .journal-section .section-heading-row {
        align-items: flex-start !important;

        margin-bottom: 38px !important;
    }

    .journal-section .journal-grid {
        grid-template-columns: 1fr !important;

        gap: 48px !important;
    }

    .journal-section .journal-image {
        aspect-ratio: 1.4 / 1 !important;
    }

    .journal-section .journal-content h3 {
        font-size: 24px !important;
    }
}
/* =========================================================
   TRACELINE FINAL CTA — PREMIUM CLOSING SECTION
========================================================= */

.final-cta {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 560px !important;

    padding: 110px 24px !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            700px 420px at 50% 100%,
            rgba(255,255,255,.07),
            transparent 70%
        ),
        linear-gradient(
            145deg,
            #ff7108 0%,
            #f76300 55%,
            #e95500 100%
        ) !important;

    color: #ffffff !important;
}


/* =========================================================
   CONTENT
========================================================= */

.final-cta .container {
    position: relative !important;
    z-index: 2 !important;

    width: 100% !important;

    text-align: center !important;
}


/* EYEBROW */

.final-cta .eyebrow {
    margin-bottom: 25px !important;

    color: rgba(255,255,255,.92) !important;

    font-size: 10px !important;
    font-weight: 800 !important;

    letter-spacing: .16em !important;
}


/* HEADLINE */

.final-cta h2 {
    max-width: 980px !important;

    margin: 0 auto 30px !important;

    color: #ffffff !important;

    font-family: "Space Grotesk", Arial, sans-serif !important;

    font-size: clamp(52px, 7vw, 92px) !important;

    font-weight: 600 !important;

    line-height: .98 !important;

    letter-spacing: -.055em !important;
}


/* DESCRIPTION */

.final-cta p {
    max-width: 610px !important;

    margin: 0 auto 38px !important;

    color: rgba(255,255,255,.82) !important;

    font-family: Inter, Arial, sans-serif !important;

    font-size: 16px !important;

    line-height: 1.65 !important;
}


/* =========================================================
   START A PROJECT BUTTON
========================================================= */

.final-cta .btn {
    display: inline-flex !important;

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

    min-height: 54px !important;

    padding: 0 27px !important;

    background: #080808 !important;

    border: 1px solid #080808 !important;

    color: #ffffff !important;

    font-size: 10px !important;

    font-weight: 800 !important;

    letter-spacing: .06em !important;

    text-decoration: none !important;

    box-shadow:
        0 16px 35px rgba(0,0,0,.18) !important;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease !important;
}


.final-cta .btn:hover {
    transform: translateY(-3px) !important;

    background: #ffffff !important;

    border-color: #ffffff !important;

    color: #080808 !important;

    box-shadow:
        0 20px 42px rgba(0,0,0,.22) !important;
}


/* =========================================================
   SUBTLE EDGE DETAIL
========================================================= */

.final-cta::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -180px;

    width: 700px;
    height: 350px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(255,255,255,.035);

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .final-cta {
        min-height: 500px !important;

        padding: 90px 24px !important;
    }

    .final-cta h2 {
        font-size: clamp(48px, 8vw, 72px) !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .final-cta {
        min-height: auto !important;

        padding: 85px 24px !important;
    }

    .final-cta h2 {
        font-size: clamp(45px, 12vw, 64px) !important;

        line-height: 1 !important;
    }

    .final-cta p {
        font-size: 15px !important;

        margin-bottom: 32px !important;
    }

    .final-cta .btn {
        width: auto !important;

        min-height: 52px !important;
    }
}
/* =========================================================
   FINAL CTA — MOBILE POLISH
========================================================= */

@media (max-width: 760px) {

    /* SECTION */
    .final-cta {
        width: 100% !important;
        min-height: auto !important;

        padding: 85px 20px 90px !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


    /* CONTENT */
    .final-cta .final-cta-inner {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /* EYEBROW */
    .final-cta .eyebrow {
        margin-bottom: 20px !important;

        font-size: 9px !important;
        line-height: 1.2 !important;

        letter-spacing: .15em !important;
    }


    /* HEADLINE */
    .final-cta h2 {
        width: 100% !important;
        max-width: 620px !important;

        margin: 0 auto 25px !important;
        padding: 0 !important;

        font-size: clamp(42px, 11vw, 58px) !important;

        line-height: .99 !important;

        letter-spacing: -.045em !important;

        text-align: center !important;
    }


    /* DESCRIPTION */
    .final-cta p {
        width: 100% !important;
        max-width: 430px !important;

        margin: 0 auto 32px !important;
        padding: 0 !important;

        font-size: 15px !important;

        line-height: 1.55 !important;

        text-align: center !important;
    }


    /* BUTTON */
    .final-cta .btn,
    .final-cta a.btn {
        display: inline-flex !important;

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

        width: auto !important;
        min-width: 180px !important;

        min-height: 52px !important;

        padding: 0 22px !important;

        background: #080808 !important;

        border: 1px solid #080808 !important;

        color: #ffffff !important;

        font-size: 10px !important;
        font-weight: 800 !important;

        letter-spacing: .06em !important;

        opacity: 1 !important;
    }


    /* BUTTON ARROW */
    .final-cta .btn span {
        margin-left: 10px !important;
    }


    /* REMOVE EXCESSIVE DECORATIVE SHAPE ON MOBILE */
    .final-cta::after {
        width: 480px !important;
        height: 240px !important;

        bottom: -150px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .final-cta {
        padding: 72px 18px 78px !important;
    }

    .final-cta h2 {
        font-size: 42px !important;
        line-height: 1 !important;
    }
    .final-cta p {
        max-width: 340px !important;
        font-size: 14px !important;
    }

    .final-cta .btn,
    .final-cta a.btn {
        min-width: 175px !important;
    }
}
/* =========================================================
   FINAL CTA — FORCE BLACK BUTTON ON MOBILE
========================================================= */

@media (max-width: 760px) {

    .final-cta .btn,
    .final-cta .btn:hover,
    .final-cta .btn:focus,
    .final-cta .btn:active,
    .final-cta a.btn,
    .final-cta a.btn:hover,
    .final-cta a.btn:focus,
    .final-cta a.btn:active {
        background: #080808 !important;
        border-color: #080808 !important;
        color: #ffffff !important;
        transform: none !important;
        box-shadow: none !important;
    }

}
/* =========================================================
   TRACELINE ORIGINAL LOGO
========================================================= */

.site-header .site-logo {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
}

.site-header .site-logo-image {
    width: 210px !important;
    max-width: 210px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}
/* =========================================================
   FINAL HEADER + HERO POLISH
========================================================= */
/* =========================================================
   HERO — FINAL PROPORTION POLISH
========================================================= */

.hero {
    padding: 58px 0 65px !important;
}

.hero-grid {
    gap: 55px !important;
    min-height: 540px !important;
}

.hero h1 {
    max-width: 680px !important;
    font-size: clamp(46px, 4.7vw, 70px) !important;
    line-height: 0.98 !important;
}

.hero-content .eyebrow {
    margin-bottom: 20px !important;
}

.hero-visual {
    max-width: 550px !important;
    padding: 5px 10px 35px 0 !important;
}
/* =========================================================
   HERO — FINAL VERTICAL ALIGNMENT
========================================================= */

.hero {
    padding-top: 38px !important;
}

.hero-grid {
    align-items: start !important;
}

.hero-visual {
    padding-top: 40px !important;
}
/* =========================================================
   SERVICES — FINAL POLISH
========================================================= */

.services-grid {
    margin-top: 54px !important;
}

.service-card {
    padding: 34px !important;
    min-height: 320px !important;
}

.service-card h3 {
    margin-top: 64px !important;
    margin-bottom: 16px !important;
}

.service-card p {
    margin-bottom: 28px !important;
}

.service-card ul {
    margin-bottom: 30px !important;
}

.service-link {
    margin-top: auto !important;
}
/* =========================================================
   SINGLE ARTICLE — READABILITY FIX
========================================================= */

.single-article .article-reading {
    background: #f5f2ec !important;
    color: #222 !important;
}

.single-article .article-body {
    color: #222 !important;
}

.single-article .article-body p,
.single-article .article-body li,
.single-article .article-body ul,
.single-article .article-body ol {
    color: #3f3e3a !important;
}

.single-article .article-body strong,
.single-article .article-body b {
    color: #1a1a1a !important;
}

.single-article .article-body h2,
.single-article .article-body h3,
.single-article .article-body h4 {
    color: #171717 !important;
}

.single-article .article-body a {
    color: var(--accent) !important;
}

.single-article .article-body blockquote {
    background: #e9e5dd !important;
    color: #222 !important;
    border-left-color: var(--accent) !important;
}

.single-article .article-body blockquote p {
    color: #222 !important;
}
/* =========================================================
   ARTICLE — INTRO PARAGRAPH REFINEMENT
========================================================= */

.single-article .article-body > p:first-child {
    color: #252525 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
}
/* =========================================================
   SINGLE ARTICLE — CTA BUTTON FIX
========================================================= */

.single-article .article-author-box a.btn.dark {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    min-height: 46px !important;
    padding: 13px 22px !important;

    background: var(--accent) !important;
    color: #ffffff !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    border: 0 !important;
}

.single-article .article-author-box a.btn.dark:hover,
.single-article .article-author-box a.btn.dark:focus {
    background: #e85f00 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.single-article .article-author-box a.btn.dark span {
    color: #ffffff !important;
}
/* =========================================================
   SINGLE ARTICLE — DARK EDITORIAL JOURNAL
   Traceline Digital
========================================================= */

/* PAGE */
.single-article {
    background: #080808 !important;
    color: #c8c5bf !important;
}

/* ARTICLE HEADER */
.single-article .article-top {
    background: #080808 !important;
    color: #f5f2ec !important;
}

.single-article .article-top-inner {
    background: transparent !important;
}

/* CATEGORY */
.single-article .article-category {
    color: #ff6a00 !important;
}

/* TITLE */
.single-article .article-top h1 {
    color: #f5f2ec !important;
}

/* AUTHOR / META */
.single-article .article-meta {
    border-top: 1px solid #292929 !important;
}

.single-article .article-author-name {
    color: #f5f2ec !important;
}

.single-article .article-author-role,
.single-article .article-author-date {
    color: #92908b !important;
}

.single-article .article-meta > span {
    color: #5f5e5a !important;
}

/* FEATURED IMAGE */
.single-article .article-image {
    background: #080808 !important;
}

.single-article .article-image img {
    display: block;
}

/* READING AREA */
.single-article .article-reading {
    background: #080808 !important;
    color: #c8c5bf !important;
}

/* ARTICLE BODY */
.single-article .article-body {
    color: #c8c5bf !important;
}

/* BODY TEXT */
.single-article .article-body p,
.single-article .article-body li,
.single-article .article-body ul,
.single-article .article-body ol {
    color: #c8c5bf !important;
}

/* OPENING PARAGRAPH */
.single-article .article-body > p:first-child {
    color: #f0ede7 !important;
}

/* BOLD TEXT */
.single-article .article-body strong,
.single-article .article-body b {
    color: #f5f2ec !important;
}

/* HEADINGS */
.single-article .article-body h2,
.single-article .article-body h3,
.single-article .article-body h4 {
    color: #f5f2ec !important;
}

/* LINKS */
.single-article .article-body a {
    color: #ff6a00 !important;
}

/* LINK HOVER */
.single-article .article-body a:hover {
    color: #ff8533 !important;
}

/* BLOCKQUOTES */
.single-article .article-body blockquote {
    background: #111111 !important;
    color: #f0ede7 !important;
    border-left: 3px solid #ff6a00 !important;
}

.single-article .article-body blockquote p {
    color: #f0ede7 !important;
}

/* LIST MARKERS */
.single-article .article-body li::marker {
    color: #ff6a00 !important;
}

/* ARTICLE IMAGES */
.single-article .article-body img {
    display: block;
    width: 100%;
    height: auto;
}

/* TRACELINE CTA */
.single-article .article-author-box {
    background: #111111 !important;
    color: #f5f2ec !important;
    border: 1px solid #292929 !important;
}

.single-article .article-author-box .article-category {
    color: #ff6a00 !important;
}

.single-article .article-author-box h3 {
    color: #f5f2ec !important;
}

.single-article .article-author-box p {
    color: #9d9b96 !important;
}

/* CTA BUTTON */
.single-article .article-author-box a.btn.dark {
    background: #ff6a00 !important;
    color: #ffffff !important;
}

.single-article .article-author-box a.btn.dark:hover,
.single-article .article-author-box a.btn.dark:focus {
    background: #e85f00 !important;
    color: #ffffff !important;
}

/* MOBILE */
@media (max-width: 760px) {

    .single-article .article-top {
        background: #080808 !important;
    }

    .single-article .article-reading {
        background: #080808 !important;
    }

    .single-article .article-body p,
    .single-article .article-body li {
        color: #c8c5bf !important;
    }

    .single-article .article-body > p:first-child {
        color: #f0ede7 !important;
    }

    .single-article .article-body h2,
    .single-article .article-body h3,
    .single-article .article-body h4 {
        color: #f5f2ec !important;
    }

    .single-article .article-body blockquote {
        background: #111111 !important;
    }
}
/* =========================================================
   TRACELINE JOURNAL — DARK EDITORIAL BLOG
   Applies to the Blog / Posts page only
========================================================= */


/* =========================================================
   01. JOURNAL PAGE BASE
========================================================= */

body {
    background: #080808;
}

main > .page-hero {
    background: #080808 !important;
    color: #f5f2ec !important;
}

main > .section.light {
    background: #080808 !important;
    color: #c8c5bf !important;
}


/* =========================================================
   02. JOURNAL HERO
========================================================= */

.page-hero {
    padding: 105px 0 85px !important;
    border-bottom: 1px solid #292929 !important;
}

.page-hero .container {
    max-width: 1100px !important;
}

.page-hero .eyebrow {
    margin-bottom: 22px !important;
    color: #ff6a00 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

.page-hero h1 {
    max-width: 900px !important;
    margin: 0 0 28px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(42px, 5.5vw, 76px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.045em !important;
    line-height: 0.98 !important;
}

.page-hero p {
    max-width: 700px !important;
    margin: 0 !important;
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   03. BLOG LIST SECTION
========================================================= */

.blog-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}


/* =========================================================
   04. ARTICLE ROW
========================================================= */

.article-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr) !important;
    gap: 70px !important;
    align-items: center !important;

    padding: 70px 0 !important;

    background: #080808 !important;
    border-bottom: 1px solid #292929 !important;
}

.article-row:first-child {
    padding-top: 80px !important;
}

.article-row:last-child {
    border-bottom: 0 !important;
}


/* =========================================================
   05. ARTICLE IMAGE
========================================================= */

.article-thumb {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
    background: #111111 !important;
}

.article-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease !important;
}

.article-row:hover .article-thumb img {
    transform: scale(1.025) !important;
    opacity: 0.9 !important;
}


/* =========================================================
   06. IMAGE PLACEHOLDER
========================================================= */

.article-thumb-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    background: #111111 !important;
    color: #5f5e5a !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
}


/* =========================================================
   07. ARTICLE INFORMATION
========================================================= */

.article-info {
    max-width: 540px !important;
    padding: 10px 0 !important;
}


/* =========================================================
   08. CATEGORY TAG
========================================================= */

.article-info .tag {
    display: inline-block !important;

    margin-bottom: 20px !important;

    color: #ff6a00 !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}


/* =========================================================
   09. ARTICLE TITLE
========================================================= */

.article-info h2 {
    margin: 0 0 20px !important;

    color: #f5f2ec !important;

    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(28px, 3vw, 44px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.05 !important;
}

.article-info h2 a {
    color: #f5f2ec !important;
    text-decoration: none !important;
}

.article-info h2 a:hover {
    color: #ff6a00 !important;
}


/* =========================================================
   10. ARTICLE EXCERPT
========================================================= */

.article-info p {
    max-width: 500px !important;
    margin: 0 0 28px !important;

    color: #9d9b96 !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   11. READ ARTICLE
========================================================= */

.article-read-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;

    color: #f5f2ec !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    transition:
        color 0.25s ease,
        gap 0.25s ease !important;
}

.article-read-more:hover {
    gap: 13px !important;
    color: #ff6a00 !important;
}


/* =========================================================
   12. EMPTY JOURNAL STATE
========================================================= */

.journal-empty {
    padding: 110px 0 !important;
    background: #080808 !important;
}

.journal-empty-content {
    max-width: 650px !important;
}

.journal-empty .eyebrow {
    margin-bottom: 18px !important;
    color: #ff6a00 !important;
}

.journal-empty h3 {
    margin: 0 0 16px !important;
    color: #f5f2ec !important;
}

.journal-empty p {
    color: #9d9b96 !important;
}


/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 900px) {

    .page-hero {
        padding: 80px 0 65px !important;
    }

    .page-hero h1 {
        font-size: clamp(40px, 8vw, 60px) !important;
    }

    .article-row {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 55px 0 !important;
    }

    .article-row:first-child {
        padding-top: 55px !important;
    }

    .article-info {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .article-info h2 {
        font-size: clamp(29px, 7vw, 42px) !important;
    }

    .article-info p {
        max-width: 650px !important;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 65px 0 50px !important;
    }

    .page-hero .eyebrow {
        margin-bottom: 18px !important;
    }

    .page-hero h1 {
        margin-bottom: 22px !important;
        font-size: 42px !important;
        line-height: 1 !important;
    }

    .page-hero p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .article-row {
        gap: 27px !important;
        padding: 45px 0 !important;
    }

    .article-thumb {
        aspect-ratio: 16 / 10 !important;
    }

    .article-info .tag {
        margin-bottom: 15px !important;
    }

    .article-info h2 {
        margin-bottom: 16px !important;
        font-size: 30px !important;
        line-height: 1.05 !important;
    }

    .article-info p {
        margin-bottom: 23px !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

}
/* =========================================================
   JOURNAL — TIGHTEN FEATURED ARTICLE INTRO
========================================================= */

main > .section.light {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

main > .section.light .article-row:first-child {
    padding-top: 0 !important;
}
/* =========================================================
   ABOUT — OUR STORY
========================================================= */

.about-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr) !important;
    gap: 80px !important;
    align-items: start !important;
}

.about-grid > div:first-child {
    max-width: 680px !important;
}

.about-grid h2 {
    max-width: 650px !important;
    margin-bottom: 28px !important;
}

.about-grid p {
    max-width: 650px !important;
    margin-bottom: 22px !important;
    color: #9d9b96 !important;
    line-height: 1.75 !important;
}

.about-grid p:last-child {
    margin-bottom: 0 !important;
}


/* Image area */

.about-grid .intro-image {
    width: 100% !important;
    min-height: 430px !important;
    background: #111111 !important;
    border: 1px solid #292929 !important;
}


/* =========================================================
   ABOUT — MOBILE
========================================================= */

@media (max-width: 800px) {

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

    .about-grid > div:first-child,
    .about-grid h2,
    .about-grid p {
        max-width: 100% !important;
    }

    .about-grid .intro-image {
        min-height: 300px !important;
    }

}
/* =========================================================
   ABOUT — WHAT WE BELIEVE
========================================================= */

.values {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 65px !important;
    border-top: 1px solid #292929 !important;
}

.value {
    position: relative !important;
    padding: 38px 45px 42px 0 !important;
    border-bottom: 1px solid #292929 !important;
}

.value:nth-child(odd) {
    padding-right: 55px !important;
    border-right: 1px solid #292929 !important;
}

.value:nth-child(even) {
    padding-left: 55px !important;
}

.value h3 {
    margin: 0 0 14px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    letter-spacing: -0.025em !important;
}

.value p {
    max-width: 480px !important;
    margin: 0 !important;
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* Orange accent on value headings */

.value h3::before {
    content: "•" !important;
    display: inline-block !important;
    margin-right: 10px !important;
    color: #ff6a00 !important;
}


/* =========================================================
   ABOUT — WHAT WE BELIEVE MOBILE
========================================================= */

@media (max-width: 700px) {

    .values {
        grid-template-columns: 1fr !important;
        margin-top: 45px !important;
    }

    .value,
    .value:nth-child(odd),
    .value:nth-child(even) {
        padding: 30px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid #292929 !important;
    }

    .value:last-child {
        border-bottom: 0 !important;
    }

    .value h3 {
        font-size: 22px !important;
    }

}
/* =========================================================
   ABOUT — OUR POSITION
========================================================= */

.dark-section {
    padding: 95px 0 !important;
}

.dark-section .container {
    max-width: 900px !important;
}

.dark-section .eyebrow {
    margin-bottom: 18px !important;
    color: #ff6a00 !important;
}

.dark-section h2 {
    margin-bottom: 14px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1 !important;
}

.dark-section p {
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    line-height: 1.7 !important;
}

.dark-section p:last-child {
    color: #f5f2ec !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
}


/* MOBILE */

@media (max-width: 700px) {

    .dark-section {
        padding: 70px 0 !important;
    }

    .dark-section h2 {
        font-size: 36px !important;
    }

    .dark-section p:last-child {
        font-size: 11px !important;
        line-height: 1.7 !important;
    }

}
/* =========================================================
   ABOUT — OUR POSITION
========================================================= */

.dark-section {
    padding: 95px 0 !important;
}

.dark-section .container {
    max-width: 900px !important;
}

.dark-section .eyebrow {
    margin-bottom: 18px !important;
    color: #ff6a00 !important;
}

.dark-section h2 {
    margin-bottom: 14px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1 !important;
}

.dark-section p {
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    line-height: 1.7 !important;
}

.dark-section p:last-child {
    color: #f5f2ec !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
}


/* MOBILE */

@media (max-width: 700px) {

    .dark-section {
        padding: 70px 0 !important;
    }

    .dark-section h2 {
        font-size: 36px !important;
    }

    .dark-section p:last-child {
        font-size: 11px !important;
        line-height: 1.7 !important;
    }

}
/* =========================================================
   ABOUT — FINAL MOBILE POSITION SPACING
========================================================= */

@media (max-width: 700px) {

    .dark-section {
        padding-top: 55px !important;
        padding-bottom: 65px !important;
    }

}
/* =========================================================
   CONTACT PAGE — EDITORIAL FORM
========================================================= */

.contact-section {
    background: #080808 !important;
    color: #f5f2ec !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr) !important;
    gap: 100px !important;
    align-items: start !important;
}


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

.contact-form-wrap {
    max-width: 760px !important;
}

.contact-form-wrap > .eyebrow,
.contact-info > .eyebrow {
    margin-bottom: 18px !important;
    color: #ff6a00 !important;
}

.contact-form-wrap h2 {
    margin: 0 0 12px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(32px, 3.2vw, 48px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
}

.form-intro {
    margin: 0 0 42px !important;
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


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

.form {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.form label,
.form-full {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
    width: 100% !important;
    margin: 0 !important;
}

.form label span,
.form-full span {
    display: block !important;
    color: #f5f2ec !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
}

.form label span b {
    color: #ff6a00 !important;
}


/* =========================================================
   INPUTS
========================================================= */

.form input,
.form select,
.form textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 1px solid #292929 !important;
    border-radius: 0 !important;
    background: #111111 !important;
    color: #f5f2ec !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    padding: 15px 16px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}

.form input,
.form select {
    min-height: 52px !important;
}

.form textarea {
    min-height: 170px !important;
    resize: vertical !important;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #777570 !important;
    opacity: 1 !important;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: #ff6a00 !important;
    background: #151515 !important;
}


/* SELECT */

.form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
}


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

.form-submit {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin-top: 4px !important;
}

.form-submit .btn.primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    min-height: 50px !important;
    padding: 14px 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ff6a00 !important;
    color: #ffffff !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.form-submit .btn.primary:hover {
    background: #e85f00 !important;
}

.form-submit small {
    max-width: 250px !important;
    color: #777570 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-left: 45px !important;
    border-left: 1px solid #292929 !important;
}

.contact-info h3 {
    margin: 0 0 42px !important;
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
}

.contact-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 22px 0 !important;
    border-top: 1px solid #292929 !important;
}

.contact-item:last-child {
    border-bottom: 1px solid #292929 !important;
}

.contact-item strong {
    color: #f5f2ec !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

.contact-item span,
.contact-item a {
    color: #9d9b96 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
}

.contact-item a:hover {
    color: #ff6a00 !important;
}


/* =========================================================
   CONTACT — MOBILE
========================================================= */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 65px !important;
    }

    .contact-form-wrap {
        max-width: 100% !important;
    }

    .contact-form-wrap h2 {
        font-size: 36px !important;
    }

    .form {
        gap: 24px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .form-submit {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .form-submit .btn.primary {
        width: 100% !important;
    }

    .form-submit small {
        max-width: 100% !important;
    }

    .contact-info {
        padding-left: 0 !important;
        border-left: 0 !important;
        border-top: 1px solid #292929 !important;
        padding-top: 50px !important;
    }

    .contact-info h3 {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

}
/* =========================================================
   SERVICES PAGE — EDITORIAL SERVICE BLOCKS
========================================================= */

/* Main services section */
.service-detail {
    display: grid !important;
    grid-template-columns: 90px minmax(0, 1fr) !important;
    column-gap: 42px !important;
    padding: 72px 0 76px !important;
    border-bottom: 1px solid #292929 !important;
}

/* First service */
.service-detail:first-child {
    padding-top: 40px !important;
}

/* Service number */
.service-detail .num {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    padding-top: 4px !important;
}

/* Small orange label */
.service-detail .eyebrow {
    color: #ff6a00 !important;
    margin-bottom: 18px !important;
}

/* Service title */
.service-detail h2 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(32px, 3.4vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    margin: 0 0 22px !important;
    max-width: 820px !important;
}

/* Service description */
.service-detail > div:last-child > p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    max-width: 820px !important;
    margin: 0 0 32px !important;
}

/* Service list */
.service-detail .service-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    gap: 0 !important;
    max-width: 700px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Individual list items */
.service-detail .service-list li {
    position: relative !important;
    color: #c8c5bf !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    padding: 12px 0 12px 20px !important;
    border-top: 1px solid #292929 !important;
}

/* Orange indicator */
.service-detail .service-list li::before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    top: 11px !important;
    color: #ff6a00 !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

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

.section.light {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
}

.section.light > .container {
    max-width: 900px !important;
}

.section.light .eyebrow {
    color: #ff6a00 !important;
    margin-bottom: 18px !important;
}

.section.light h2 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 20px !important;
}

.section.light p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 720px !important;
    margin: 0 auto 32px !important;
}

/* CTA button */
.section.light .btn.dark {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 48px !important;
    padding: 14px 24px !important;
    background: #ff6a00 !important;
    color: #ffffff !important;
    border: 0 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

.section.light .btn.dark:hover,
.section.light .btn.dark:focus {
    background: #e85f00 !important;
    color: #ffffff !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .service-detail {
        display: block !important;
        padding: 58px 0 60px !important;
    }

    .service-detail:first-child {
        padding-top: 30px !important;
    }

    .service-detail .num {
        margin-bottom: 18px !important;
        color: #f5f2ec !important;
        font-size: 14px !important;
    }

    .service-detail .eyebrow {
        margin-bottom: 14px !important;
    }

    .service-detail h2 {
        font-size: 34px !important;
        line-height: 1.05 !important;
        margin-bottom: 18px !important;
    }

    .service-detail > div:last-child > p {
        font-size: 16px !important;
        line-height: 1.7 !important;
        margin-bottom: 28px !important;
    }

    .service-detail .service-list {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }

    .service-detail .service-list li {
        font-size: 14px !important;
        padding: 13px 0 13px 20px !important;
    }

    .section.light {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .section.light h2 {
        font-size: 34px !important;
    }

    .section.light p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

}
/* =========================================================
   SERVICE DETAIL LINKS
========================================================= */

.service-detail-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 30px !important;

    color: #f5f2ec !important;

    font-family: "Inter", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;

    text-decoration: none !important;
    text-transform: uppercase !important;

    transition:
        color .25s ease,
        gap .25s ease !important;
}

.service-detail-link:hover {
    color: #ff6a00 !important;
    gap: 14px !important;
}



/* =========================================================
   SEO SERVICE PAGE
========================================================= */

.service-page-hero {
    padding: 105px 0 95px !important;
    background: #080808 !important;
}

.service-page-hero .container {
    max-width: 1050px !important;
}

.service-page-hero .eyebrow {
    color: #ff6a00 !important;
    margin-bottom: 22px !important;
}

.service-page-hero h1 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(46px, 6vw, 78px) !important;
    line-height: .98 !important;
    letter-spacing: -.045em !important;
    max-width: 900px !important;
    margin: 0 0 28px !important;
}

.service-page-hero p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    max-width: 720px !important;
    margin: 0 !important;
}


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

.seo-intro {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.seo-intro-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 80px !important;
    align-items: start !important;
}

.seo-intro .eyebrow {
    color: #ff6a00 !important;
    margin-bottom: 18px !important;
}

.seo-intro h2 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.035em !important;
    margin: 0 !important;
}

.seo-intro-grid p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    margin: 0 0 22px !important;
}


/* =========================================================
   SEO SERVICE GRID
========================================================= */

.seo-service-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
    background: #292929 !important;
    border: 1px solid #292929 !important;
    margin-top: 55px !important;
}

.seo-service-card {
    position: relative !important;
    padding: 38px !important;
    min-height: 270px !important;
    background: #080808 !important;
}

.seo-service-number {
    display: block !important;
    color: #ff6a00 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    margin-bottom: 58px !important;
}

.seo-service-card h3 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
    letter-spacing: -.025em !important;
    margin: 0 0 14px !important;
}

.seo-service-card p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 480px !important;
    margin: 0 !important;
}


/* =========================================================
   SEO PROCESS
========================================================= */

.seo-process {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.seo-process-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1px !important;
    background: #292929 !important;
    border: 1px solid #292929 !important;
    margin-top: 55px !important;
}

.seo-process-item {
    background: #080808 !important;
    padding: 32px !important;
    min-height: 260px !important;
}

.seo-process-item > span {
    display: block !important;
    color: #ff6a00 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    margin-bottom: 55px !important;
}

.seo-process-item h3 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: 23px !important;
    margin: 0 0 12px !important;
}

.seo-process-item p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}


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

.seo-cta {
    padding: 105px 0 !important;
    background: #080808 !important;
    text-align: center !important;
}

.seo-cta .container {
    max-width: 850px !important;
}

.seo-cta .eyebrow {
    color: #ff6a00 !important;
    margin-bottom: 18px !important;
}

.seo-cta h2 {
    color: #f5f2ec !important;
    font-family: "Space Grotesk", Arial, sans-serif !important;
    font-size: clamp(38px, 5vw, 60px) !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
    margin: 0 0 20px !important;
}

.seo-cta p {
    color: #aaa7a1 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 650px !important;
    margin: 0 auto 32px !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .service-page-hero {
        padding: 75px 0 70px !important;
    }

    .service-page-hero h1 {
        font-size: 42px !important;
        line-height: 1 !important;
    }

    .service-page-hero p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .seo-intro {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .seo-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .seo-intro h2 {
        font-size: 34px !important;
    }

    .seo-service-grid {
        grid-template-columns: 1fr !important;
        margin-top: 40px !important;
    }

    .seo-service-card {
        min-height: auto !important;
        padding: 30px !important;
    }

    .seo-service-number {
        margin-bottom: 45px !important;
    }

    .seo-service-card h3 {
        font-size: 24px !important;
    }

    .seo-process {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .seo-process-grid {
        grid-template-columns: 1fr !important;
        margin-top: 40px !important;
    }

    .seo-process-item {
        min-height: auto !important;
        padding: 30px !important;
    }

    .seo-process-item > span {
        margin-bottom: 40px !important;
    }

    .seo-cta {
        padding: 75px 0 !important;
    }

    .seo-cta h2 {
        font-size: 38px !important;
    }

}