:root {
    --red: #f5534b;
    --red-dark: #df3e36;
    --black: #111111;
    --ink: #050505;
    --muted: #6f6f6f;
    --line: #141414;
    --light-line: #999999;
    --paper: #ffffff;
    --soft-gray: #d9d9d9;
    --dark-panel: #443c3a;
    --max: 1320px;
    --gutter: clamp(1.25rem, 6.5vw, 7.5rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Editorial type scale (peterdong-inspired) */
    --fs-eyebrow: clamp(0.75rem, 0.9vw, 0.875rem);   /* 12-14px */
    --fs-body-sm: 0.875rem;                            /* 14px */
    --fs-body:    0.9375rem;                           /* 15px */
    --fs-body-lg: clamp(1rem, 1.15vw, 1.125rem);     /* 16-18px */
    --fs-lead:    clamp(1.0625rem, 1.3vw, 1.25rem);  /* 17-20px */
    --fs-h5:      clamp(1rem, 1.15vw, 1.125rem);     /* 16-18px */
    --fs-h4:      clamp(1.125rem, 1.4vw, 1.375rem);  /* 18-22px */
    --fs-h3:      clamp(1.375rem, 1.8vw, 1.75rem);   /* 22-28px */
    --fs-h2:      clamp(1.75rem, 2.5vw, 2.5rem);     /* 28-40px */
    --fs-h1:      clamp(2.25rem, 3.5vw, 3.5rem);     /* 36-56px */
    --fs-display: clamp(2.5rem, 4.5vw, 4.5rem);      /* 40-72px */
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.zh-page {
    font-family: "Noto Sans SC", Inter, system-ui, sans-serif;
}

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

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

button,
input,
textarea {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

.site-header {
    min-height: 72px;
    padding: 12px var(--gutter);
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 2rem;
    background: #fff;
    position: relative;
    z-index: 30;
}

.site-logo img {
    width: min(220px, 50vw);
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 5.5rem);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0;
}

.site-nav a:not(.nav-contact) {
    position: relative;
    padding: 0.35rem 0;
}

.site-nav a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease, color 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--red);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-contact {
    color: var(--red);
    border: 2px solid var(--black);
    padding: 0.7rem 1.8rem;
    transition: background 180ms ease, color 180ms ease, transform 120ms ease;
}

.nav-contact:hover,
.nav-contact.is-active {
    background: var(--black);
    color: #fff;
}

.nav-contact:active,
.red-button:active,
.outline-button:active,
.outline-light-button:active {
    transform: scale(0.98);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid var(--black);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: transform 220ms ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    color: var(--red);
    text-transform: uppercase;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.section-eyebrow span {
    width: clamp(70px, 9vw, 120px);
    height: 2px;
    background: var(--red);
    flex: 0 0 auto;
}

.section-eyebrow p {
    margin: 0;
}

.red-button,
.outline-button,
.outline-light-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 54px;
    padding: 0.85rem 2.25rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms ease;
}

.red-button {
    background: var(--red);
    color: #fff;
    border: 2px solid var(--red);
}

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

.red-button .arrow,
.outline-button .arrow,
.outline-light-button span {
    transition: transform 180ms ease;
}

.red-button:hover .arrow,
.outline-button:hover .arrow {
    transform: translate(5px, -5px);
}

.outline-button {
    border: 3px solid var(--black);
    color: var(--red);
    background: transparent;
}

.outline-button:hover {
    background: var(--black);
    color: #fff;
}

.outline-light-button {
    border: 3px solid #fff;
    color: #fff;
    background: transparent;
    min-width: 250px;
}

.outline-light-button:hover {
    background: #fff;
    color: var(--red);
}

.outline-light-button:hover span {
    transform: translateX(4px);
}

.red-cta-band {
    background: var(--red);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.red-cta-band h2 {
    font-family: Anton, Impact, sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    line-height: 1;
    margin: 0 0 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.red-cta-band p {
    margin: 0;
    font-size: var(--fs-lead);
    line-height: 1.5;
}

.red-cta-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer {
    background: #151515;
    color: #f4f4f4;
}

.footer-grid {
    padding: clamp(3rem, 5vw, 4rem) var(--gutter);
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.85fr;
    gap: clamp(3rem, 7vw, 7rem);
}

.footer-brand img {
    width: min(220px, 60vw);
    height: auto;
    display: block;
    filter: url('#footer-logo-filter');
}

.footer-brand p,
.footer-contact p,
.footer-contact a,
.footer-nav a {
    color: #e8e8e8;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.35;
}

.footer-brand p {
    max-width: 420px;
    margin: 2.2rem 0;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: #aaa;
    display: flex;
    align-items: center;
    transition: color 180ms ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.footer-line {
    width: min(420px, 100%);
    height: 2px;
    background: var(--red);
}

.footer-meta {
    color: #9d9d9d !important;
    margin-top: 1.5rem !important;
    font-size: 1rem !important;
}

.footer-contact h2,
.footer-nav h2 {
    color: #8f8f8f;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin: 0 0 1.8rem;
}

.footer-contact,
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-contact a,
.footer-nav a,
.footer-bottom a {
    position: relative;
}

.footer-contact a::after,
.footer-nav a::after,
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-contact a:hover::after,
.footer-nav a:hover::after,
.footer-bottom a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 1.8rem var(--gutter);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    color: #9d9d9d;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 4rem;
}

.legal-page {
    padding: clamp(5rem, 9vw, 9rem) var(--gutter);
}

.legal-copy {
    max-width: 880px;
    margin-top: clamp(3rem, 7vw, 6rem);
}

.legal-copy h1 {
    margin: 0 0 2rem;
    font-size: var(--fs-h1);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.legal-copy p {
    font-size: var(--fs-body-lg);
    line-height: 1.65;
    color: #222;
}

.legal-copy a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.clip-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 900ms var(--ease);
}

.clip-reveal.is-visible {
    clip-path: inset(0 0 0 0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.promo-bar {
    min-height: 52px;
    padding: 0.65rem var(--gutter);
    background: var(--red);
    color: #fff;
    border-top: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.promo-bar p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.4;
    font-weight: 500;
}

.promo-bar a {
    min-width: 200px;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    background: var(--black);
    color: #fff;
    text-transform: uppercase;
    font-size: var(--fs-body-sm);
    letter-spacing: 0.04em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 180ms ease, background 180ms ease;
}

.promo-bar a:hover {
    background: #000;
    transform: scale(1.03);
}

.home-hero {
    position: relative;
    min-height: clamp(520px, 52vw, 740px);
    color: #fff;
    overflow: hidden;
}

.home-hero-image,
.home-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-image {
    object-fit: cover;
    animation: heroScale 1200ms var(--ease) both;
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22) 46%, rgba(0, 0, 0, 0.48));
}

.home-hero-content {
    position: relative;
    z-index: 1;
    min-height: inherit;
    padding: clamp(2.5rem, 5vw, 4.75rem) var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
}

.home-hero-eyebrow {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.home-hero-eyebrow span {
    width: clamp(80px, 10vw, 130px);
    height: 2px;
    background: #fff;
    flex: 0 0 auto;
}

.home-hero-eyebrow p,
.home-hero h1 {
    margin: 0;
}

.home-hero h1 {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    max-width: 720px;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.home-start-button {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    min-width: min(260px, 100%);
    min-height: 60px;
    padding: 0.9rem 1.6rem;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: clamp(1rem, 1.4vw, 1.45rem);
    font-weight: 700;
    transition: background 180ms ease, transform 160ms ease;
}

.home-start-button:hover {
    background: var(--red-dark);
}

.home-start-button span {
    font-size: 1.35em;
    transition: transform 180ms ease;
}

.home-start-button:hover span {
    transform: translate(5px, -5px);
}

.ticker {
    background: var(--black);
    color: #fff;
    overflow: hidden;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.ticker-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1.7rem;
    padding: 0.55rem 1rem;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    white-space: nowrap;
    animation: tickerMove 22s linear infinite;
}

.ticker-track span:not(:last-child)::after {
    content: "|";
    margin-left: 1.7rem;
}

.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
    animation-play-state: paused;
}

.home-services-intro {
    padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(72px, 120px) minmax(360px, 1fr);
    gap: clamp(1.5rem, 4vw, 5rem);
    align-items: center;
    border-bottom: 2px solid var(--black);
}

.home-services-image { order: 1; }
.home-services-label { order: 2; }
.home-services-copy  { order: 3; }

.home-services-label {
    color: var(--red);
    text-transform: uppercase;
    font-family: Anton, Impact, sans-serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 0.8;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0;
}

.zh-page .home-services-label {
    transform: none;
}

.home-services-image img {
    width: 100%;
    height: auto;
}

.home-services-copy {
    max-width: 760px;
}

.home-services-copy > p {
    margin: 0 0 clamp(2rem, 3.5vw, 3rem);
    font-size: var(--fs-lead);
    line-height: 1.55;
}

.services-accordion {
    border-top: 2px solid var(--line);
}

.services-accordion-item {
    border-bottom: 2px solid var(--line);
}

.services-accordion button {
    width: 100%;
    min-height: 96px;
    padding: 1rem 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    transition: color 180ms ease;
}

.services-accordion button:hover {
    color: var(--red);
}

.accordion-plus {
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
    transition: transform 220ms var(--ease), color 180ms ease;
}

.services-accordion button.is-open .accordion-plus {
    color: var(--red);
    transform: rotate(45deg);
}

.services-accordion-panel {
    padding: 0 0 1.75rem;
    font-size: 1.1rem;
    color: var(--muted);
}

.services-accordion-panel p {
    max-width: 620px;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.services-accordion-panel a {
    color: var(--red);
    font-weight: 700;
}

.home-what-we-do {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    border-bottom: 2px solid var(--black);
}

.home-what-grid {
    display: grid;
    grid-template-columns: minmax(380px, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(4rem, 8vw, 9rem);
    align-items: start;
}

.home-what-left h2 {
    margin: clamp(4rem, 7vw, 7rem) 0 2rem;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
}

.home-what-left > p {
    margin: 0 0 2.5rem;
    font-size: var(--fs-lead);
    font-weight: 500;
    line-height: 1.5;
}

.home-what-list {
    display: grid;
    gap: 2.4rem;
}

.what-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.what-item span {
    color: var(--red);
    font-weight: 700;
    font-size: var(--fs-body);
    letter-spacing: 0.04em;
}

.what-item h3 {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    font-size: var(--fs-h4);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.what-item p {
    max-width: 460px;
    margin: 0;
    color: #333;
    font-size: var(--fs-body);
    line-height: 1.55;
}

.home-team {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1fr);
    border-bottom: 2px solid var(--black);
    padding-right: 0;
}

.home-team-copy {
    padding: clamp(5rem, 9vw, 8rem) var(--gutter);
    border-right: 2px solid var(--black);
}

.home-team h2 {
    margin: 0 0 clamp(2rem, 4vw, 4rem);
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.home-team p {
    max-width: 580px;
    margin: 0 0 1.4rem;
    font-size: var(--fs-lead);
    line-height: 1.55;
}

.home-team-rule {
    width: min(640px, 100%);
    height: 3px;
    background: var(--black);
    margin: 3rem 0 4rem;
}

.home-team-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.services-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) clamp(2rem, 4vw, 3.5rem) 0;
}

.services-hero-eyebrow {
    margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
    padding-left: var(--gutter);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.25fr) minmax(360px, 0.95fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.services-hero-image img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.services-hero-copy h1 {
    margin: 0 0 1.4rem;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.services-hero-copy h1 em {
    color: var(--red);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.16em;
    font-weight: 600;
}

.services-hero-copy p {
    margin: 0 0 2.5rem;
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted);
}

.services-hero-copy .red-button {
    min-width: min(220px, 100%);
    min-height: 54px;
    border-radius: 0;
}

.services-list-section {
    padding: clamp(2rem, 4vw, 4rem) var(--gutter) clamp(4rem, 7vw, 7rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 5vw, 6rem);
    row-gap: clamp(3rem, 5vw, 5rem);
}

.service-item {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
}

.service-number {
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--fs-body);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.service-number span {
    width: clamp(64px, 5.5vw, 96px);
    height: 2px;
    background: var(--red);
}

.service-item h3 {
    margin: 0 0 1.2rem;
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    line-height: 1.1;
}

.service-item p {
    border-top: 1px solid var(--light-line);
    padding-top: 0.85rem;
    margin: 0 0 1rem;
    font-size: var(--fs-body);
    line-height: 1.55;
}

.service-item a {
    border-top: 1px solid var(--light-line);
    padding-top: 1rem;
    color: var(--red);
    font-size: var(--fs-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 180ms ease;
}

.service-item a span {
    display: inline-block;
    margin-left: 0.6rem;
    transition: transform 180ms ease;
}

.service-item a:hover {
    color: var(--red-dark);
}

.service-item a:hover span {
    transform: translateX(6px);
}

@keyframes heroScale {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

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

.about-hero,
.contact-hero,
.zh-hero {
    padding: clamp(3rem, 5vw, 5rem) 0 0;
}

.about-hero .section-eyebrow,
.contact-hero .section-eyebrow,
.zh-hero .section-eyebrow,
.zh-services .section-eyebrow {
    margin: 0 var(--gutter) clamp(1.5rem, 2.5vw, 2.5rem);
}

.about-hero-grid,
.contact-hero-grid,
.zh-hero-grid,
.mission-split,
.zh-story-grid,
.zh-summary {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
    padding-right: var(--gutter);
}

.about-hero-copy,
.mission-copy,
.contact-intro,
.zh-hero-copy {
    padding-left: var(--gutter);
}

.about-hero-copy h1,
.mission-copy h2,
.contact-intro h1,
.zh-hero-copy h1,
.zh-section-head h2,
.zh-services h2,
.zh-summary h2 {
    margin: 0;
    color: #000;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.about-hero-copy p,
.mission-copy p,
.contact-intro p,
.zh-hero-copy p,
.zh-story-copy p,
.zh-service-card p,
.zh-service-card li,
.zh-summary p {
    color: #111;
    font-size: var(--fs-lead);
    line-height: 1.55;
}

.about-hero-copy p,
.contact-intro > p,
.zh-hero-copy > p {
    margin: clamp(2rem, 4vw, 3.5rem) 0;
    max-width: 650px;
}

.about-hero-media,
.mission-media,
.zh-video,
.zh-story-media,
.zh-summary-media {
    background: var(--soft-gray);
    overflow: hidden;
}

.about-hero-media {
    min-height: clamp(380px, 45vw, 580px);
}

.about-hero-media img,
.mission-media img,
.zh-story-media img,
.zh-summary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(120px, 16vw, 220px);
    background: var(--dark-panel);
    color: #fff;
    padding: clamp(4rem, 7vw, 6.5rem) var(--gutter);
    overflow: hidden;
}

.values-panel h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.values-list {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.value-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(2.2rem, 4.2vw, 3.5rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.value-index {
    margin: 0.4rem 0 0;
    font-family: Anton, Impact, sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.03em;
}

.value-row h3,
.values-vertical {
    font-family: Anton, Impact, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.value-row h3 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.value-row p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--fs-lead);
    line-height: 1.55;
}

.values-vertical {
    align-self: center;
    justify-self: end;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.85;
    letter-spacing: -0.01em;
}

.mission-split {
    padding: clamp(7rem, 11vw, 12rem) var(--gutter);
}

.mission-copy {
    padding-left: 0;
}

.mission-copy p {
    max-width: 650px;
    margin: 2rem 0 0;
}

.mission-media {
    aspect-ratio: 1.5 / 1;
}

.testimonial-logos {
    padding: 0 var(--gutter) clamp(7rem, 11vw, 12rem);
}

.testimonial-logos h2 {
    margin: 0 0 clamp(2rem, 4vw, 3.5rem);
    font-size: var(--fs-h2);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.logo-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
}

.logo-card {
    min-height: clamp(240px, 23vw, 370px);
    border: 4px solid #6f6f6f;
    border-radius: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: border-color 180ms ease;
}

.logo-card:hover {
    border-color: var(--red);
}

.logo-card span {
    color: #171717;
    font-size: clamp(2rem, 3.6vw, 4.2rem);
    line-height: 1;
}

.logo-card small {
    margin-top: 0.6rem;
    color: #555;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-hero {
    padding-bottom: clamp(6rem, 9vw, 9rem);
}

.contact-hero-grid {
    padding-right: var(--gutter);
    align-items: start;
}

.contact-intro h1 {
    max-width: 760px;
}

.contact-direct {
    display: grid;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: var(--fs-body-lg);
}

.contact-direct a {
    width: fit-content;
    border-bottom: 2px solid var(--red);
}

.contact-media {
    margin: clamp(3rem, 5vw, 4.5rem) 0 0;
    border-top: 3px solid var(--black);
    padding-top: 1.5rem;
}

.contact-media img {
    width: 100%;
    aspect-ratio: 1200 / 760;
    object-fit: cover;
}

.contact-form {
    border: 3px solid var(--black);
    padding: clamp(2rem, 4vw, 4rem);
    background: #fff;
}

.contact-form h2 {
    margin: 0 0 1.5rem;
    font-family: Anton, Impact, sans-serif;
    font-size: var(--fs-h2);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-form label {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
    color: #111;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 2px solid var(--black);
    border-radius: 0;
    padding: 1rem;
    color: #111;
    background: #fff;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline-offset: 2px;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-status {
    min-height: 1.4rem;
    margin: 1rem 0 0;
    color: var(--muted);
}

.form-status.is-success {
    color: #176b3a;
}

.form-status.is-error {
    color: var(--red-dark);
}

.contact-info-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: clamp(4rem, 7vw, 6rem) var(--gutter);
    background: var(--dark-panel);
    color: #fff;
}

.contact-info-band article {
    border-top: 1px solid rgba(255, 255, 255, 0.75);
    padding-top: 1.5rem;
}

.contact-info-band span {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

.contact-info-band a,
.contact-info-band p {
    margin: 0;
    font-size: var(--fs-h4);
    line-height: 1.4;
}

.zh-hero-grid {
    padding-right: var(--gutter);
}

.zh-cta-row,
.zh-contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zh-location {
    margin-top: 1.5rem !important;
    color: var(--muted) !important;
    font-size: 1rem !important;
}

.zh-video {
    aspect-ratio: 16 / 9;
}

.zh-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh-editorial-section,
.zh-services,
.zh-summary {
    padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.zh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.zh-section-head span {
    width: min(28vw, 380px);
    height: 2px;
    background: var(--red);
}

.zh-story-grid,
.zh-summary {
    padding-left: var(--gutter);
}

.zh-story-media,
.zh-summary-media {
    aspect-ratio: 1.4 / 1;
}

.zh-story-copy h3 {
    margin: 0 0 1rem;
    font-size: var(--fs-h2);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.zh-services {
    background: #fff;
}

.zh-services h2 {
    max-width: 900px;
    margin: 0 0 clamp(3rem, 6vw, 5rem);
}

.zh-service-list {
    display: grid;
    gap: 1.5rem;
}

.zh-service-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    border: 2px solid var(--black);
    background: #fff;
    padding: clamp(1.5rem, 3.5vw, 3rem);
}

.zh-service-number,
.zh-service-kicker {
    color: var(--red) !important;
    font-weight: 700;
}

.zh-service-number {
    margin: 0;
    font-family: Anton, Impact, sans-serif;
    font-size: 3rem !important;
    line-height: 1;
}

.zh-service-kicker {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    font-size: 1rem !important;
}

.zh-service-card h3 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1;
}

.zh-service-card ul {
    margin: 1.2rem 0 0;
    padding-left: 1.2rem;
}

.zh-summary {
    align-items: center;
}

.zh-summary-copy p {
    max-width: 700px;
}

.zh-contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
    align-items: center;
    background: var(--red);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.zh-contact-cta h2 {
    margin: 0 0 0.75rem;
    font-size: var(--fs-h1);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.zh-contact-cta p {
    margin: 0;
    font-size: var(--fs-lead);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 92px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 92px 0 auto 0;
        background: #fff;
        border-top: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
        padding: 2rem var(--gutter);
        display: grid;
        gap: 1.4rem;
        justify-content: stretch;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 260ms var(--ease), opacity 200ms ease;
    }

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

    .site-nav a {
        font-size: 1.35rem;
    }

    .nav-contact {
        text-align: center;
    }

    .red-cta-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .red-cta-actions {
        justify-content: flex-start;
    }

    .outline-light-button {
        width: 100%;
    }

    .promo-bar,
    .home-hero-content,
    .home-services-intro,
    .home-what-grid,
    .home-team,
    .services-hero-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .home-team {
        padding-right: 0;
    }

    .promo-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-bar a {
        min-width: min(230px, 100%);
    }

    .home-hero-content {
        grid-template-rows: auto 1fr auto;
    }

    .home-hero-eyebrow,
    .home-hero h1,
    .home-start-button {
        grid-column: 1;
    }

    .home-hero-eyebrow {
        align-self: start;
        gap: 1.4rem;
    }

    .home-start-button {
        justify-self: start;
    }

    .home-services-label {
        writing-mode: initial;
        transform: none;
        order: 0;
    }

    .home-services-image,
    .home-services-copy {
        order: 0;
    }

    .home-services-image img {
        height: auto;
        aspect-ratio: auto;
        object-fit: fill;
    }

    .home-team-copy {
        border-right: 0;
        border-bottom: 2px solid var(--black);
    }

    .home-team-image img {
        min-height: 420px;
    }

    .services-hero-image {
        order: 2;
    }

    .services-hero-copy {
        order: 1;
    }

    .services-grid {
        row-gap: 4rem;
    }

    .service-item {
        min-height: 0;
    }

    .about-hero-grid,
    .contact-hero-grid,
    .zh-hero-grid,
    .mission-split,
    .zh-story-grid,
    .zh-summary,
    .values-panel,
    .contact-info-band,
    .zh-contact-cta {
        grid-template-columns: 1fr;
    }

    .about-hero-copy,
    .mission-copy,
    .contact-intro,
    .zh-hero-copy {
        padding-right: var(--gutter);
    }

    .about-hero-media {
        min-height: 420px;
        margin-left: var(--gutter);
    }

    .mission-split,
    .testimonial-logos,
    .zh-editorial-section,
    .zh-services,
    .zh-summary {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .values-vertical {
        writing-mode: horizontal-tb;
        justify-self: start;
        font-size: clamp(3.5rem, 14vw, 7rem);
    }

    .logo-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid,
    .zh-hero-grid {
        padding-right: 0;
    }

    .contact-form,
    .contact-media,
    .zh-video {
        margin: 0 var(--gutter);
    }

    .contact-media {
        margin-top: 3rem;
    }

    .zh-contact-actions {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .section-eyebrow {
        font-size: 1.1rem;
        gap: 1rem;
    }

    .section-eyebrow span {
        width: 58px;
    }

    .red-cta-actions {
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        gap: 2rem;
    }

    .home-hero {
        min-height: 620px;
    }

    .home-hero-content {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .home-hero-eyebrow {
        font-size: 1rem;
    }

    .home-start-button {
        min-height: 72px;
        gap: 1.5rem;
    }

    .services-accordion button {
        min-height: 78px;
    }

    .what-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .home-what-left h2,
    .home-team h2,
    .services-hero-copy h1,
    .service-item h3 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .services-hero-copy .red-button {
        width: 100%;
    }

    .about-hero-copy h1,
    .mission-copy h2,
    .contact-intro h1,
    .zh-hero-copy h1,
    .zh-section-head h2,
    .zh-services h2,
    .zh-summary h2 {
        font-size: 2.8rem;
    }

    .about-hero-media {
        min-height: 300px;
    }

    .value-row,
    .zh-service-card {
        grid-template-columns: 1fr;
    }

    .value-row h3 {
        font-size: 2.9rem;
    }

    .contact-form,
    .zh-video {
        margin: 0;
    }

    .zh-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .zh-section-head span {
        width: 100%;
    }
}

@media (min-width: 1800px) {
    :root {
        --gutter: 15vw;
    }
}

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

    .reveal,
    .clip-reveal {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .home-hero-image,
    .ticker-track {
        animation: none !important;
    }
}
