:root {
    --gold: #cc9933;
    --gold-strong: #d89d21;
    --gold-dark: #8f6718;
    --ink: #050505;
    --obsidian: #080806;
    --graphite: #12100a;
    --charcoal: #1e1b15;
    --steel: #34434a;
    --sage: #5f7064;
    --mist: #eef3f4;
    --ivory: #f8f5ef;
    --paper: #ffffff;
    --muted: rgba(5, 5, 5, 0.68);
    --muted-light: rgba(255, 255, 255, 0.68);
    --line: rgba(5, 5, 5, 0.12);
    --line-light: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 70px rgba(17, 14, 8, 0.12);
    --shadow-strong: 0 34px 90px rgba(5, 5, 5, 0.22);
    --radius: 8px;
    --container: min(1260px, calc(100vw - 44px));
    --heading-font: "Manrope", "Inter", Avenir, system-ui, sans-serif;
    --body-font: "Inter", "Manrope", Avenir, system-ui, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --display-xs: clamp(1.35rem, 2vw, 1.9rem);
    --display-sm: clamp(2rem, 3vw, 3rem);
    --display-md: clamp(2.5rem, 4.2vw, 4.25rem);
    --display-lg: clamp(3rem, 5vw, 5rem);
    --display-xl: clamp(3.6rem, 6vw, 5.25rem);
    --mobile-display-sm: clamp(1.75rem, 7vw, 2.75rem);
    --mobile-display-md: clamp(2.35rem, 10vw, 3.75rem);
    --mobile-display-xl: 3.5rem;
    --leading-none: 1;
    --leading-compact: 0.95;
    --leading-tight: 1.04;
    --leading-copy: 1.65;
    --focus-ring: 0 0 0 4px rgba(204, 153, 51, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: var(--leading-copy);
    letter-spacing: 0;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

::selection {
    background: rgba(204, 153, 51, 0.32);
    color: var(--ink);
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    line-height: var(--leading-tight);
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 11ch;
    font-size: var(--display-md);
}

h2 {
    font-size: var(--display-sm);
}

h3 {
    font-size: var(--text-xl);
}

p {
    color: var(--muted);
    text-wrap: pretty;
}

.text-gold {
    color: var(--gold);
}

[id] {
    scroll-margin-top: 124px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0;
    box-shadow: var(--focus-ring);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 80;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.utility-bar {
    background: var(--ink);
    color: var(--paper);
    font-size: var(--text-xs);
    font-weight: 700;
}

.utility-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.utility-inner span {
    color: rgba(255, 255, 255, 0.76);
}

.utility-inner div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.utility-inner a {
    color: rgba(255, 255, 255, 0.82);
}

.utility-inner a:hover,
.utility-inner a:focus-visible {
    color: var(--gold);
}

.utility-icon-link {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #25d366;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.utility-icon-link:hover,
.utility-icon-link:focus-visible {
    border-color: rgba(37, 211, 102, 0.72);
    background: rgba(37, 211, 102, 0.16);
    color: #34e276;
    transform: translateY(-1px);
}

.utility-icon-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 245, 239, 0.95);
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(5, 5, 5, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 82px;
}

.brand img {
    width: 164px;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: var(--radius);
    color: rgba(5, 5, 5, 0.7);
    font-size: var(--text-sm);
    font-weight: 800;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    background: rgba(204, 153, 51, 0.14);
    color: var(--ink);
}

.header-action,
.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--body-font);
    font-size: var(--text-sm);
    font-weight: 900;
    line-height: var(--leading-none);
    text-align: center;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.header-action,
.btn-primary {
    background: var(--ink);
    color: var(--paper);
}

.header-action:hover,
.header-action:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px);
    background: var(--gold);
    color: var(--ink);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(5, 5, 5, 0.18);
    color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--gold);
    background: rgba(204, 153, 51, 0.12);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(204, 153, 51, 0.56);
    background: rgba(204, 153, 51, 0.12);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 156px);
    overflow: hidden;
    align-items: center;
    padding: clamp(86px, 10vw, 148px) 0 clamp(56px, 7vw, 92px);
    background: var(--ink);
    color: var(--paper);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(104deg, transparent 0 42%, rgba(204, 153, 51, 0.12) 46%, transparent 52% 100%);
    opacity: 0.65;
    pointer-events: none;
    animation: heroSweep 11s ease-in-out infinite;
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.9;
    animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 34%, rgba(5, 5, 5, 0.5) 62%, rgba(5, 5, 5, 0.32) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.26) 0%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    gap: clamp(42px, 7vw, 86px);
}

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid,
.callout-grid,
.editorial-grid,
.approach-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.hero-copy {
    max-width: 880px;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: var(--paper);
    font-size: var(--display-lg);
}

.hero .eyebrow {
    color: var(--gold);
}

.hero-lede {
    max-width: 760px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--text-xl);
}

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

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-actions,
.hero-proof {
    animation: riseIn 720ms ease both;
}

.hero-copy h1 {
    animation-delay: 80ms;
}

.hero-copy .hero-lede {
    animation-delay: 170ms;
}

.hero-copy .hero-actions {
    animation-delay: 260ms;
}

.hero-proof {
    animation-delay: 360ms;
}

.btn-on-dark {
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--paper);
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
    border-color: var(--gold);
    background: rgba(204, 153, 51, 0.16);
    color: var(--paper);
}

.hero-proof {
    position: relative;
    display: grid;
    max-width: 1060px;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 5, 0.28);
    backdrop-filter: blur(10px);
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.22);
    isolation: isolate;
    animation: proofRailIn 820ms ease 360ms both;
}

.hero-proof::before,
.hero-proof::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-proof::before {
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(204, 153, 51, 0.16), transparent 28%, transparent 72%, rgba(204, 153, 51, 0.12)),
        linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 45%, transparent 52% 100%);
    transform: translateX(-38%);
    animation: proofSweep 9s ease-in-out 1.4s infinite;
}

.hero-proof::after {
    left: 0;
    bottom: 0;
    width: 34%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(204, 153, 51, 0));
    animation: proofLine 6.8s ease-in-out 1.1s infinite;
}

.hero-proof a {
    position: relative;
    display: grid;
    min-height: 96px;
    align-content: center;
    gap: 8px;
    padding: 20px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-sm);
    font-weight: 900;
    text-transform: uppercase;
    transform: translateY(14px);
    opacity: 0;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
    animation: proofItemIn 620ms ease both;
}

.hero-proof a:first-child {
    border-left: 0;
}

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

.hero-proof a:nth-child(1) {
    animation-delay: 560ms;
}

.hero-proof a:nth-child(2) {
    animation-delay: 650ms;
}

.hero-proof a:nth-child(3) {
    animation-delay: 740ms;
}

.hero-proof a:nth-child(4) {
    animation-delay: 830ms;
}

.hero-proof a::before {
    content: "";
    position: absolute;
    inset: auto 18px 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.hero-proof a:hover,
.hero-proof a:focus-visible {
    transform: translateY(-3px);
    background: rgba(204, 153, 51, 0.12);
    color: var(--paper);
}

.hero-proof a:hover::before,
.hero-proof a:focus-visible::before {
    transform: scaleX(1);
}

.hero-proof span {
    color: var(--gold);
    font-size: var(--text-xs);
    line-height: var(--leading-none);
}

.hero-proof strong {
    display: block;
    max-width: 18ch;
    color: inherit;
    font-family: var(--heading-font);
    font-size: var(--text-lg);
    line-height: var(--leading-tight);
}

@keyframes heroImageDrift {
    from {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.09) translate3d(-1.8%, 1.2%, 0);
    }
}

@keyframes heroSweep {
    0%,
    58% {
        transform: translateX(-26%);
        opacity: 0;
    }

    68% {
        opacity: 0.65;
    }

    100% {
        transform: translateX(28%);
        opacity: 0;
    }
}

@keyframes proofRailIn {
    from {
        clip-path: inset(0 50% 0 50%);
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        clip-path: inset(0);
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes proofSweep {
    0%,
    54% {
        transform: translateX(-44%);
        opacity: 0;
    }

    64% {
        opacity: 0.52;
    }

    100% {
        transform: translateX(42%);
        opacity: 0;
    }
}

@keyframes proofLine {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(194%);
        opacity: 0.92;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.brand-console,
.brand-board,
.brand-map,
.service-index-panel,
.contact-brand-panel {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.brand-console {
    position: relative;
    display: grid;
    min-height: 590px;
    align-content: end;
    overflow: hidden;
    padding: clamp(30px, 5vw, 52px);
    background:
        linear-gradient(135deg, rgba(204, 153, 51, 0.17) 0 18%, transparent 18% 36%, rgba(204, 153, 51, 0.13) 36% 54%, transparent 54% 72%, rgba(204, 153, 51, 0.1) 72%),
        var(--ink);
    color: var(--paper);
}

.brand-console::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.brand-console::after {
    content: "";
    position: absolute;
    right: 38px;
    top: 38px;
    width: 110px;
    height: 18px;
    background: var(--gold);
    box-shadow: -34px 34px 0 rgba(204, 153, 51, 0.4), -68px 68px 0 rgba(204, 153, 51, 0.22);
}

.console-kicker {
    position: absolute;
    left: clamp(30px, 5vw, 52px);
    top: clamp(30px, 5vw, 52px);
    color: var(--gold);
    font-size: var(--text-xs);
    font-weight: 900;
    text-transform: uppercase;
}

.brand-console strong {
    position: relative;
    z-index: 1;
    color: var(--paper);
    font-family: var(--heading-font);
    font-size: var(--display-md);
    line-height: var(--leading-none);
}

.brand-console strong:nth-of-type(2) {
    color: var(--gold);
}

.console-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 34px;
}

.console-grid span {
    padding: 12px 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-xs);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.image-shell {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow-strong);
}

.image-shell img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 600ms ease;
}

.image-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 44%, rgba(5, 5, 5, 0.72) 100%),
        linear-gradient(90deg, rgba(204, 153, 51, 0.14), transparent 38%);
    pointer-events: none;
}

.image-shell:hover img {
    transform: scale(1.025);
}

.image-shell figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    max-width: 560px;
    padding: 13px 14px;
    border-left: 3px solid var(--gold);
    background: rgba(5, 5, 5, 0.72);
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--text-sm);
    font-weight: 800;
}

.stats-band {
    background: var(--ink);
    color: var(--paper);
}

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

.stat-item {
    padding: 34px 22px;
    border-left: 1px solid var(--line-light);
}

.stat-item:last-child {
    border-right: 1px solid var(--line-light);
}

.stat-item strong {
    display: block;
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: var(--display-sm);
    line-height: var(--leading-none);
}

.stat-item span {
    display: block;
    max-width: 210px;
    margin-top: 8px;
    color: var(--muted-light);
    font-size: var(--text-sm);
}

.section {
    padding: 98px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 40px;
}

.heading-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.heading-row h2 {
    max-width: 820px;
}

.partner-intro {
    background: var(--paper);
}

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

.signal-card {
    min-height: 270px;
    padding: 28px;
    background: var(--paper);
    transition: background-color 190ms ease, color 190ms ease, transform 190ms ease;
}

.signal-card h3 {
    max-width: 12ch;
    margin-bottom: 22px;
    font-size: var(--display-xs);
}

.signal-card p {
    margin-bottom: 0;
}

.signal-card:hover {
    transform: translateY(-4px);
    background: var(--gold-strong);
}

.signal-card:hover p {
    color: rgba(5, 5, 5, 0.76);
}

.service-architecture {
    background: var(--obsidian);
    color: var(--paper);
}

.service-architecture .eyebrow,
.service-architecture p {
    color: var(--muted-light);
}

.service-architecture .btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--paper);
}

.service-row-list {
    border-top: 1px solid var(--line-light);
}

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1.25fr 1fr 230px;
    gap: 28px;
    align-items: center;
    min-height: 164px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--paper);
    transition: color 190ms ease, transform 190ms ease, border-color 190ms ease;
}

.service-row::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--gold-strong);
    transition: width 240ms ease;
}

.service-row:hover,
.service-row:focus-visible {
    transform: translateX(12px);
    border-color: rgba(204, 153, 51, 0.5);
    color: var(--gold-strong);
    box-shadow: inset 0 0 0 1px rgba(204, 153, 51, 0.08);
}

.service-row:focus-visible {
    box-shadow: var(--focus-ring), inset 0 0 0 1px rgba(204, 153, 51, 0.08);
}

.service-row:hover::before,
.service-row:focus-visible::before {
    width: min(100%, 940px);
}

.row-number {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
    font-family: var(--heading-font);
    font-size: var(--display-xl);
    font-weight: 900;
    line-height: var(--leading-compact);
}

.service-row:hover .row-number,
.service-row:focus-visible .row-number {
    -webkit-text-stroke-color: rgba(204, 153, 51, 0.82);
}

.row-title strong {
    display: block;
    max-width: 560px;
    font-family: var(--heading-font);
    font-size: var(--display-xs);
    font-weight: 900;
    line-height: var(--leading-tight);
    text-transform: uppercase;
}

.row-title em {
    display: block;
    margin-top: 14px;
    color: var(--gold);
    font-style: normal;
    font-size: var(--text-xs);
    font-weight: 900;
    text-transform: uppercase;
}

.row-summary {
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--text-md);
    font-weight: 600;
}

.row-action {
    justify-self: end;
    border-bottom: 1px solid currentColor;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--text-sm);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.row-action::after {
    content: " ->";
}

.service-row:hover .row-title em,
.service-row:focus-visible .row-title em,
.service-row:hover .row-summary,
.service-row:focus-visible .row-summary,
.service-row:hover .row-action,
.service-row:focus-visible .row-action {
    color: var(--gold-strong);
}

.proof-showcase {
    background:
        linear-gradient(90deg, rgba(204, 153, 51, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(204, 153, 51, 0.05) 1px, transparent 1px),
        var(--ivory);
    background-size: 70px 70px;
}

.proof-grid,
.snapshot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.journey-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.journey-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.journey-item:last-child {
    border-bottom: 1px solid var(--line);
}

.journey-item span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--gold);
    font-weight: 900;
}

.journey-item h3 {
    margin-bottom: 6px;
}

.journey-item p {
    margin-bottom: 0;
}

.service-snapshot {
    background: var(--paper);
}

.split-copy p,
.rich-copy p {
    font-size: var(--text-lg);
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    border-bottom: 2px solid var(--gold);
    color: var(--gold-dark);
    font-weight: 900;
}

.brand-map {
    position: relative;
    display: grid;
    min-height: 450px;
    align-content: center;
    gap: 14px;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.95) 0 54%, rgba(204, 153, 51, 0.98) 54% 100%);
    color: var(--paper);
}

.brand-map::before,
.brand-map::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.brand-map::before {
    top: 34px;
}

.brand-map::after {
    bottom: 34px;
}

.brand-map span,
.brand-map em {
    position: relative;
    z-index: 1;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-map strong {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    color: var(--paper);
    font-family: var(--heading-font);
    font-size: var(--display-sm);
    line-height: var(--leading-none);
}

.brand-map strong:nth-of-type(2) {
    margin-left: 8%;
}

.brand-map strong:nth-of-type(3) {
    margin-left: 16%;
}

.brand-map em {
    margin-top: 20px;
    color: var(--ink);
}

.compliance-map {
    background:
        linear-gradient(115deg, rgba(204, 153, 51, 0.98) 0 52%, rgba(5, 5, 5, 0.95) 52% 100%);
}

.compliance-map em {
    color: var(--gold);
}

.outcomes-section,
.capabilities-preview,
.market-section,
.service-catalog {
    background: var(--paper);
}

.outcome-grid,
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.outcome-grid span,
.market-grid span {
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    color: var(--steel);
    font-weight: 900;
}

.outcome-grid span:hover,
.market-grid span:hover {
    border-color: rgba(204, 153, 51, 0.6);
    background: rgba(204, 153, 51, 0.14);
    color: var(--ink);
}

.approach-section,
.standards-callout,
.contact-section {
    background: var(--mist);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(5, 5, 5, 0.76);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--gold);
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
}

.process-item span,
.service-detail-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--gold);
    font-weight: 900;
}

.process-item h3 {
    margin-bottom: 8px;
}

.process-item p {
    margin-bottom: 0;
}

.edge-section {
    background: var(--charcoal);
    color: var(--paper);
}

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

.edge-grid,
.capability-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.edge-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line-light);
    border: 1px solid var(--line-light);
}

.edge-item,
.capability-card,
.value-card {
    min-height: 220px;
    padding: 28px;
    border-radius: var(--radius);
}

.edge-item {
    background: var(--charcoal);
}

.edge-item h3 {
    color: var(--gold);
}

.capability-card,
.value-card {
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 12px 32px rgba(17, 14, 8, 0.04);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.capability-card:hover,
.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(204, 153, 51, 0.52);
    background: #fffaf0;
}

.capability-card p,
.value-card p,
.edge-item p {
    margin-bottom: 0;
}

.page-hero {
    padding: 74px 0 90px;
    background:
        linear-gradient(90deg, rgba(204, 153, 51, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(204, 153, 51, 0.06) 1px, transparent 1px),
        var(--paper);
    background-size: 72px 72px;
}

.page-hero h1 {
    max-width: 12ch;
}

.page-hero p:not(.eyebrow) {
    max-width: 740px;
    font-size: var(--text-xl);
}

.page-visual {
    min-height: 470px;
}

.page-visual img {
    object-position: center;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 118px) 0 clamp(72px, 8vw, 108px);
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.97) 0 55%, rgba(248, 245, 239, 0.98) 55% 100%),
        var(--obsidian);
    color: var(--paper);
    isolation: isolate;
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.about-hero::before {
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(204, 153, 51, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(204, 153, 51, 0.08) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.38;
}

.about-hero::after {
    right: max(18px, calc((100vw - 1260px) / 2));
    top: 58px;
    z-index: -1;
    width: clamp(180px, 22vw, 340px);
    height: clamp(180px, 22vw, 340px);
    border: 1px solid rgba(204, 153, 51, 0.36);
    transform: rotate(45deg);
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
}

.about-hero-copy {
    max-width: 680px;
}

.about-hero .eyebrow {
    color: var(--gold);
}

.about-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--paper);
    font-size: var(--display-md);
}

.about-hero p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.about-hero-badges span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(204, 153, 51, 0.46);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--text-xs);
    font-weight: 900;
    text-transform: uppercase;
}

.about-visual {
    min-height: 540px;
    border-color: rgba(204, 153, 51, 0.34);
    transform: translateY(10px);
}

.about-visual img {
    object-position: 50% 45%;
}

.about-hero-copy .eyebrow,
.about-hero-copy h1,
.about-hero-copy p,
.about-hero-badges span {
    animation: riseIn 700ms ease both;
}

.about-hero-copy h1 {
    animation-delay: 80ms;
}

.about-hero-copy p {
    animation-delay: 160ms;
}

.about-hero-badges span:nth-child(1) {
    animation-delay: 240ms;
}

.about-hero-badges span:nth-child(2) {
    animation-delay: 300ms;
}

.about-hero-badges span:nth-child(3) {
    animation-delay: 360ms;
}

.about-visual {
    animation: aboutVisualIn 860ms ease 220ms both;
}

@keyframes aboutVisualIn {
    from {
        opacity: 0;
        transform: translate3d(28px, 26px, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 10px, 0) scale(1);
    }
}

.page-hero-dark {
    background:
        linear-gradient(90deg, rgba(204, 153, 51, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(204, 153, 51, 0.08) 1px, transparent 1px),
        var(--graphite);
    color: var(--paper);
}

.page-hero-dark p {
    color: var(--muted-light);
}

.brand-board {
    position: relative;
    display: grid;
    min-height: 450px;
    align-content: end;
    overflow: hidden;
    padding: clamp(30px, 5vw, 52px);
    background:
        linear-gradient(135deg, rgba(204, 153, 51, 0.18) 0 20%, transparent 20% 40%, rgba(204, 153, 51, 0.12) 40% 60%, transparent 60% 80%, rgba(204, 153, 51, 0.1) 80%),
        var(--ink);
    color: var(--paper);
}

.brand-board::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.board-mark {
    position: absolute;
    top: 38px;
    left: 38px;
    z-index: 1;
    display: inline-flex;
    min-width: 82px;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius);
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: var(--text-xl);
    font-weight: 900;
}

.brand-board p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--paper);
    font-family: var(--heading-font);
    font-size: var(--display-md);
    font-weight: 900;
    line-height: var(--leading-none);
}

.brand-board p:nth-of-type(2) {
    color: var(--gold);
}

.editorial-grid {
    align-items: start;
}

.rich-copy {
    display: grid;
    gap: 16px;
}

.rich-copy p {
    margin-bottom: 0;
}

.belief-section {
    background: var(--mist);
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.belief-panel {
    min-height: 420px;
    padding: clamp(30px, 5vw, 44px);
    border-radius: var(--radius);
    background: var(--gold);
}

.belief-panel-dark {
    background: var(--ink);
    color: var(--paper);
}

.belief-panel span {
    display: inline-flex;
    margin-bottom: 28px;
    color: rgba(5, 5, 5, 0.62);
    font-size: var(--text-xs);
    font-weight: 900;
    text-transform: uppercase;
}

.belief-panel-dark span {
    color: var(--gold);
}

.belief-panel-dark p {
    color: var(--muted-light);
}

.service-index-panel {
    display: grid;
    min-height: 450px;
    align-content: center;
    gap: 10px;
    padding: clamp(24px, 4vw, 38px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        var(--ink);
    background-size: 44px 44px;
}

.service-index-panel span {
    display: block;
    padding: 13px 15px;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: var(--text-sm);
    font-weight: 800;
}

.services-detail-grid {
    display: grid;
    gap: 16px;
}

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 14px 40px rgba(17, 14, 8, 0.05);
}

.service-detail h2 {
    margin-bottom: 12px;
    font-size: var(--display-xs);
}

.service-detail .summary {
    color: var(--ink);
    font-size: var(--text-lg);
    font-weight: 800;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag-row span,
.standards-list span {
    padding: 8px 10px;
    border-radius: var(--radius);
    background: rgba(52, 67, 74, 0.08);
    color: var(--steel);
    font-size: var(--text-xs);
    font-weight: 900;
}

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

.standards-list span {
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.contact-brand-panel {
    display: grid;
    min-height: 450px;
    align-content: center;
    gap: 13px;
    padding: clamp(28px, 5vw, 52px);
    background:
        linear-gradient(135deg, var(--gold) 0 42%, var(--ink) 42% 100%);
    color: var(--paper);
}

.contact-brand-panel span {
    color: var(--ink);
    font-size: var(--text-sm);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-brand-panel strong {
    color: var(--paper);
    font-family: var(--heading-font);
    font-size: var(--display-md);
    line-height: var(--leading-none);
}

.contact-brand-panel a {
    width: fit-content;
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    font-weight: 900;
}

.contact-grid {
    align-items: start;
}

.contact-panel,
.form-wrap {
    border-radius: var(--radius);
}

.contact-panel {
    position: sticky;
    top: 112px;
    padding: 34px;
    background: var(--ink);
    color: var(--paper);
}

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

.contact-list {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.contact-list a,
.contact-list p {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--paper);
}

.contact-list a:hover,
.contact-list a:focus-visible {
    background: var(--gold);
    color: var(--ink);
}

.contact-list span {
    color: var(--gold);
    font-size: var(--text-xs);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-list a:hover span,
.contact-list a:focus-visible span {
    color: var(--ink);
}

.mini-cta {
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
}

.form-wrap {
    padding: 34px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(5, 5, 5, 0.2);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    font: inherit;
    font-weight: 500;
}

input,
select {
    min-height: 48px;
    padding: 0 14px;
}

textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-dark);
    outline: 0;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #9a2d24;
    background: #fffaf8;
}

small,
.standalone-error {
    color: #9a2d24;
    font-size: var(--text-sm);
    font-weight: 700;
}

.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    font-weight: 600;
}

.consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
    accent-color: var(--gold);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-alert-success {
    background: rgba(95, 112, 100, 0.14);
    color: #25442d;
}

.form-alert-error {
    background: rgba(154, 45, 36, 0.1);
    color: #7b1e17;
}

.form-note {
    margin: -8px 0 0;
    color: rgba(5, 5, 5, 0.58);
    font-size: var(--text-sm);
    font-weight: 700;
}

.map-section {
    padding-bottom: 0;
    background: var(--paper);
}

.map-copy {
    max-width: 780px;
    margin-bottom: clamp(32px, 4vw, 48px);
    text-align: center;
}

.map-copy .eyebrow {
    justify-content: center;
}

.map-copy p:not(.eyebrow) {
    max-width: 660px;
    margin-inline: auto;
    font-size: var(--text-lg);
}

.map-frame {
    position: relative;
    width: 100vw;
    min-height: clamp(420px, 50vw, 620px);
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    border-top: 1px solid rgba(5, 5, 5, 0.12);
    background: var(--mist);
}

.map-frame::before {
    content: "";
    position: absolute;
    inset: 18px max(18px, calc((100vw - 1260px) / 2));
    z-index: 1;
    border: 1px solid rgba(204, 153, 51, 0.28);
    pointer-events: none;
}

.map-frame iframe {
    display: block;
    width: 100vw;
    max-width: none;
    height: clamp(420px, 50vw, 620px);
    border: 0;
    filter: saturate(0.92) contrast(0.98);
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(66px, 8vw, 104px) 0;
    border-top: 1px solid rgba(204, 153, 51, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(105deg, rgba(204, 153, 51, 0.92) 0 12%, transparent 12% 100%),
        linear-gradient(90deg, var(--obsidian) 0%, var(--graphite) 62%, #1b1508 100%);
    color: var(--paper);
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cta-section::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
    opacity: 0.28;
}

.cta-section::after {
    right: max(22px, calc((100vw - 1260px) / 2));
    bottom: -36px;
    width: clamp(190px, 22vw, 340px);
    height: clamp(190px, 22vw, 340px);
    border: 1px solid rgba(204, 153, 51, 0.32);
    transform: rotate(45deg);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) auto;
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
}

.cta-inner > div {
    max-width: 860px;
}

.cta-section .eyebrow {
    color: var(--gold);
}

.cta-section h2 {
    max-width: 780px;
    margin-bottom: 18px;
    color: var(--paper);
    font-size: var(--display-sm);
}

.cta-section p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--text-lg);
}

.cta-section .btn-primary {
    justify-self: end;
    min-width: 210px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus-visible {
    background: var(--gold);
    color: var(--ink);
}

.site-footer {
    padding: 64px 0 30px;
    background: var(--ink);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 38px;
}

.footer-brand img {
    width: 168px;
    height: auto;
}

.footer-grid h2 {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: var(--text-md);
    text-transform: uppercase;
}

.footer-grid nav,
.footer-grid address {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.footer-grid a,
.footer-grid p,
.footer-grid span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--text-sm);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--paper);
    box-shadow: 0 16px 40px rgba(5, 5, 5, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(37, 211, 102, 0.38);
    border-radius: 50%;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px);
    background: #20bd5a;
    box-shadow: 0 20px 48px rgba(5, 5, 5, 0.28);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(204, 153, 51, 0.55);
    outline-offset: 5px;
}

.whatsapp-float svg {
    position: relative;
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.js-enabled .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .service-row.reveal-item,
.js-enabled .journey-item.reveal-item {
    transform: translateY(20px);
}

.js-enabled .service-row.reveal-item.is-visible,
.js-enabled .journey-item.reveal-item.is-visible {
    transform: translateY(0);
}

.js-enabled .service-row.reveal-item.is-visible:hover,
.js-enabled .service-row.reveal-item.is-visible:focus-visible {
    transform: translateX(12px);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-enabled .reveal-item,
    .js-enabled .reveal-item.is-visible {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .partner-signal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row {
        grid-template-columns: 130px 1fr;
        gap: 18px 28px;
    }

    .row-summary {
        grid-column: 2;
    }

    .row-action {
        grid-column: 2;
        justify-self: start;
    }

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

    .capability-grid,
    .values-grid,
    .outcome-grid,
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 880px) {
    :root {
        --container: min(720px, calc(100vw - 28px));
    }

    h1 {
        max-width: 10ch;
        font-size: var(--mobile-display-md);
    }

    h2 {
        font-size: var(--mobile-display-sm);
    }

    .utility-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
    }

    .utility-inner div {
        justify-content: flex-start;
        gap: 12px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 76px;
    }

    .header-action {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: calc(100svh - 76px);
        overflow-y: auto;
        padding: 18px max(14px, calc((100vw - 720px) / 2 + 14px)) 28px;
        border-bottom: 1px solid var(--line);
        background: rgba(248, 245, 239, 0.98);
        box-shadow: 0 26px 60px rgba(5, 5, 5, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        visibility: hidden;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-nav a {
        padding: 15px 16px;
        background: var(--paper);
    }

    .hero {
        min-height: auto;
        padding: 70px 0 54px;
    }

    .hero-bg {
        object-position: 62% center;
    }

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

    .hero-proof a {
        min-height: 88px;
    }

    .about-hero {
        background: var(--obsidian);
    }

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

    .about-visual {
        min-height: 420px;
        transform: none;
    }

    .map-copy {
        max-width: 720px;
    }

    .hero-grid,
    .page-hero-grid,
    .split-grid,
    .contact-grid,
    .callout-grid,
    .editorial-grid,
    .approach-layout,
    .proof-grid,
    .snapshot-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .brand-console,
    .brand-board,
    .brand-map,
    .service-index-panel,
    .contact-brand-panel {
        min-height: 400px;
    }

    .stats-grid,
    .belief-grid,
    .field-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 74px 0;
    }

    .page-hero {
        padding: 58px 0 72px;
    }

    .heading-row,
    .cta-inner,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

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

    .cta-section .btn-primary {
        justify-self: start;
    }

    .contact-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .brand img,
    .footer-brand img {
        width: 142px;
    }

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

    .stats-grid,
    .belief-grid,
    .field-grid,
    .footer-grid,
    .edge-grid,
    .capability-grid,
    .values-grid,
    .outcome-grid,
    .market-grid,
    .partner-signal-grid,
    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof a,
    .hero-proof a:first-child {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-proof a:first-child {
        border-top: 0;
    }

    .hero-proof a {
        min-height: 80px;
        padding: 18px;
    }

    .signal-card {
        min-height: 220px;
    }

    .stat-item,
    .stat-item:last-child {
        border-right: 0;
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }

    .service-row {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 28px 0;
    }

    .service-row:hover,
    .service-row:focus-visible {
        transform: translateX(0);
    }

    .row-summary,
    .row-action {
        grid-column: auto;
    }

    .row-number {
        font-size: var(--mobile-display-xl);
    }

    .service-detail {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .belief-panel,
    .form-wrap,
    .contact-panel {
        padding: 24px;
    }

    .brand-console,
    .brand-board,
    .brand-map,
    .service-index-panel,
    .contact-brand-panel {
        min-height: 360px;
    }

    .about-visual {
        min-height: 340px;
    }

    .map-frame {
        min-height: 360px;
    }

    .map-frame iframe {
        height: 360px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}
