:root {
    --paper: #fffaf8;
    --white: #ffffff;
    --ink: #211518;
    --muted: #6d5c60;
    --line: #dccfd1;
    --red: #bf1731;
    --red-dark: #861124;
    --red-bright: #e62b45;
    --pink: #f9dce2;
    --blush: #fff0f1;
    --coral: #ff6b49;
    --cream: #f1e7dc;
    --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --shell: min(1240px, calc(100vw - 48px));
    --radius-sm: 12px;
    --radius: 22px;
    --shadow: 0 28px 80px rgba(62, 20, 31, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
    text-wrap: balance;
}

address {
    font-style: normal;
}

:focus-visible {
    outline: 3px solid #2458d3;
    outline-offset: 4px;
}

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

.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;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: currentColor;
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 22px;
    border: 1px solid var(--red);
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    gap: 11px;
    font-size: 0.78rem;
}

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

.button-white:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
}

.text-link span {
    color: var(--red);
    transition: transform 0.2s ease;
}

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

.text-link-light {
    color: var(--white);
    text-decoration: underline;
}

.text-link-light span {
    color: var(--white);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}

.section {
    padding-block: 120px;
}

.section h2 {
    margin-bottom: 28px;
    font-family: var(--display);
    font-size: clamp(2.5rem, 5.3vw, 5.7rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.section h2 em,
.page-hero h1 em,
.home-hero h1 em {
    color: var(--red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.large-copy {
    max-width: 720px;
    color: #4f3d42;
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    line-height: 1.55;
}

/* Header */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 248, 0.9);
    backdrop-filter: blur(16px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(33, 21, 24, 0.12);
    box-shadow: 0 8px 30px rgba(33, 21, 24, 0.05);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
    width: 4px;
    border-radius: 4px;
    background: var(--white);
    transform: rotate(35deg);
}

.brand-mark::before {
    height: 24px;
    left: 8px;
    top: -2px;
}

.brand-mark span {
    height: 22px;
    left: 15px;
    top: 5px;
}

.brand-mark::after {
    height: 17px;
    left: 22px;
    top: 12px;
}

.brand-word {
    font-family: var(--display);
    font-size: 1.13rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav ul a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #47363b;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav ul a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.site-nav ul a:hover::after,
.site-nav ul a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
}

.menu-icon {
    display: grid;
    gap: 6px;
}

.menu-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

/* Home hero */

.home-hero {
    position: relative;
    padding-block: 54px 84px;
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5%;
    left: -10%;
    width: 38vw;
    height: 38vw;
    border: 1px solid rgba(191, 23, 49, 0.12);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    min-height: 650px;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
    gap: clamp(44px, 7vw, 110px);
}

.home-hero h1 {
    max-width: 800px;
    margin-bottom: 30px;
    font-family: var(--display);
    font-size: clamp(3.8rem, 7.6vw, 7.8rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.84;
}

.home-hero h1 em {
    display: block;
}

.hero-lede {
    max-width: 660px;
    margin-bottom: 34px;
    color: #4f3d42;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.55;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 42px 0 0;
    list-style: none;
}

.hero-tags li {
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #5d4a50;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-stage {
    position: relative;
    min-height: 590px;
    border-radius: 30px;
    background:
        linear-gradient(140deg, transparent 45%, rgba(255, 255, 255, 0.12) 45.2%, transparent 45.6%),
        var(--red);
    box-shadow: var(--shadow);
    color: var(--white);
    overflow: hidden;
}

.signal-stage::before,
.signal-stage::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
}

.signal-stage::before {
    width: 500px;
    height: 500px;
    top: 62px;
    left: -170px;
}

.signal-stage::after {
    width: 290px;
    height: 290px;
    top: 168px;
    left: -66px;
}

.stage-label {
    position: absolute;
    z-index: 3;
    top: 25px;
    right: 25px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.stage-label span:first-child::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ffd9df;
    animation: signal-pulse 1.8s ease-in-out infinite;
}

.signal-disc {
    position: absolute;
    z-index: 1;
    top: 145px;
    left: 50%;
    width: 310px;
    height: 310px;
    border: 52px solid var(--pink);
    border-radius: 50%;
    transform: translateX(-50%);
}

.signal-disc::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    transform: translate(-50%, -50%);
}

.signal-frame {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(3px);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.frame-a {
    top: 108px;
    right: 42px;
    width: 190px;
    height: 145px;
    transform: rotate(7deg);
}

.frame-b {
    top: 270px;
    right: 90px;
    width: 230px;
    height: 164px;
    transform: rotate(-8deg);
}

.frame-c {
    top: 394px;
    right: 34px;
    width: 170px;
    height: 112px;
    transform: rotate(5deg);
}

.stage-caption {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 22px;
    left: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-style: italic;
    line-height: 1;
}

@keyframes signal-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.7); }
}

.signal-strip {
    width: calc(100% + 50px);
    margin-left: -25px;
    border-block: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    transform: rotate(-1.1deg);
}

.signal-strip-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 32px;
    padding: 15px 0;
    font-family: var(--display);
    font-size: clamp(1.1rem, 2.2vw, 1.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.signal-strip-track i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red-bright);
}

/* Homepage sections */

.intro-section {
    padding-block: 150px;
}

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

.services-preview {
    background: var(--red);
    color: var(--white);
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 70px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 60px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
}

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

.service-row {
    display: grid;
    min-height: 168px;
    align-items: center;
    padding-block: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    grid-template-columns: 72px minmax(240px, 0.85fr) minmax(300px, 1fr) 48px;
    gap: 28px;
}

.service-number {
    align-self: start;
    padding-top: 8px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.service-row h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.service-row p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.service-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-row:hover .service-arrow {
    background: var(--white);
    color: var(--red);
    transform: rotate(45deg);
}

.section-action {
    margin-top: 50px;
}

.action-center {
    text-align: center;
}

.formats-section {
    background: var(--white);
}

.section-kicker-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.micro-note {
    max-width: 300px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
}

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

.format-card {
    position: relative;
    display: flex;
    min-height: 500px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.format-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.format-red {
    background: var(--red);
    color: var(--white);
}

.format-pink {
    background: var(--pink);
}

.format-cream {
    background: var(--cream);
}

.format-index {
    position: absolute;
    top: 25px;
    left: 27px;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.11em;
}

.format-symbol {
    position: absolute;
    top: 58px;
    right: 24px;
    font-family: var(--display);
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-15deg);
}

.format-ring {
    width: 190px;
    height: 190px;
    border: 40px solid var(--red);
    border-radius: 50%;
    transform: none;
}

.format-ring::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    transform: translate(-50%, -50%);
}

.format-bars {
    display: flex;
    top: 70px;
    right: 30px;
    height: 180px;
    align-items: flex-end;
    gap: 15px;
    transform: none;
}

.format-bars i {
    display: block;
    width: 40px;
    border-radius: 30px 30px 0 0;
    background: var(--red);
}

.format-bars i:nth-child(1) { height: 45%; }
.format-bars i:nth-child(2) { height: 100%; }
.format-bars i:nth-child(3) { height: 70%; }

.format-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.format-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    line-height: 1.5;
}

.format-card small {
    position: relative;
    z-index: 2;
    padding-top: 17px;
    border-top: 1px solid currentColor;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.45;
}

.process-section {
    background: var(--blush);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: clamp(60px, 10vw, 150px);
}

.process-title {
    position: sticky;
    top: 130px;
    align-self: start;
}

.process-title h2 {
    font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.process-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    min-height: 170px;
    align-items: start;
    padding: 32px 0;
    border-top: 1px solid #cdbcc1;
    grid-template-columns: 70px 1fr;
    gap: 28px;
}

.process-list li:last-child {
    border-bottom: 1px solid #cdbcc1;
}

.process-list > li > span {
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.process-list h3 {
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: 2.3rem;
    letter-spacing: -0.055em;
}

.process-list p {
    max-width: 500px;
    margin: 0;
    color: #554349;
}

.studio-preview {
    background: var(--white);
}

.studio-preview-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr);
    gap: clamp(60px, 10vw, 150px);
}

.studio-poster {
    position: relative;
    display: flex;
    min-height: 640px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 40% 38%, var(--pink) 0 14%, transparent 14.3%),
        radial-gradient(circle at 40% 38%, transparent 0 24%, rgba(255, 255, 255, 0.3) 24.3% 24.7%, transparent 25%),
        var(--red);
    box-shadow: var(--shadow);
    color: var(--white);
    overflow: hidden;
}

.studio-poster::after {
    content: "";
    position: absolute;
    top: 13%;
    right: -120px;
    width: 380px;
    height: 380px;
    border: 70px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.poster-top,
.poster-bottom {
    position: relative;
    z-index: 2;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.studio-poster strong {
    position: relative;
    z-index: 2;
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.78;
}

.studio-poster strong em {
    color: var(--pink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.studio-copy h2 {
    font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.closing-cta {
    padding-block: 105px;
    background: var(--red);
    color: var(--white);
}

.closing-grid {
    display: grid;
    grid-template-columns: 0.36fr 1fr;
    gap: 60px;
}

.closing-grid h2 {
    max-width: 880px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(3.1rem, 6.2vw, 6.6rem);
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.closing-grid > div > p {
    max-width: 680px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.16rem;
}

.compact-cta {
    padding-block: 88px;
}

.compact-cta .closing-grid h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
}

/* Shared internal hero */

.page-hero {
    position: relative;
    padding-block: 95px 105px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -6vw;
    bottom: -30vw;
    width: 44vw;
    height: 44vw;
    border: 1px solid rgba(191, 23, 49, 0.16);
    border-radius: 50%;
}

.page-hero-grid {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
    gap: 80px;
}

.page-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4rem, 7.7vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.84;
}

.page-hero-lede {
    margin: 0 0 8px;
    color: #4f3d42;
    font-size: clamp(1.1rem, 1.65vw, 1.4rem);
    line-height: 1.55;
}

/* Work */

.work-section {
    background: var(--white);
}

.study-stack {
    display: grid;
    gap: 90px;
}

.study-card {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.7fr);
    gap: clamp(48px, 8vw, 110px);
}

.study-card:nth-child(even) .study-visual {
    order: 2;
}

.study-visual {
    position: relative;
    min-height: 570px;
    padding: 28px;
    border-radius: var(--radius);
    color: var(--white);
    overflow: hidden;
}

.study-one .study-visual {
    background: var(--red);
}

.study-two .study-visual {
    background: var(--pink);
    color: var(--ink);
}

.study-three .study-visual {
    background: var(--ink);
}

.study-code {
    position: relative;
    z-index: 3;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.study-visual > strong {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 26px;
    left: 28px;
    font-family: var(--display);
    font-size: clamp(3.6rem, 7vw, 7.3rem);
    letter-spacing: -0.08em;
    line-height: 0.73;
}

.study-one .study-visual > i {
    position: absolute;
    top: 60px;
    right: -55px;
    width: 360px;
    height: 360px;
    border: 74px solid var(--pink);
    border-radius: 50%;
}

.study-one .study-visual::before,
.study-one .study-visual::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 180px;
    border: 2px solid var(--white);
}

.study-one .study-visual::before { top: 115px; left: 40px; transform: rotate(-10deg); }
.study-one .study-visual::after { top: 220px; right: 40px; transform: rotate(8deg); }

.study-orbits {
    position: absolute;
    inset: 40px;
}

.study-orbits i {
    position: absolute;
    top: 45%;
    left: 50%;
    border: 2px solid var(--red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.study-orbits i:nth-child(1) { width: 420px; height: 180px; transform: translate(-50%, -50%) rotate(18deg); }
.study-orbits i:nth-child(2) { width: 220px; height: 420px; transform: translate(-50%, -50%) rotate(50deg); }
.study-orbits i:nth-child(3) { width: 110px; height: 110px; background: var(--red); }

.study-lines {
    position: absolute;
    top: 65px;
    right: 35px;
    left: 35px;
    display: grid;
    gap: 17px;
}

.study-lines i {
    display: block;
    height: 15px;
    border-radius: 99px;
    background: var(--red-bright);
}

.study-lines i:nth-child(1) { width: 28%; }
.study-lines i:nth-child(2) { width: 72%; }
.study-lines i:nth-child(3) { width: 45%; }
.study-lines i:nth-child(4) { width: 92%; }
.study-lines i:nth-child(5) { width: 60%; }

.study-copy .eyebrow {
    margin-bottom: 28px;
}

.study-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 4.7vw, 5rem);
}

.study-copy > p:not(.eyebrow) {
    color: #514046;
    font-size: 1.12rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.tag-list li {
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.study-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
}

/* Services */

.service-detail-section {
    background: var(--white);
}

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

.service-detail {
    display: grid;
    min-height: 270px;
    align-items: start;
    padding-block: 45px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 70px minmax(300px, 0.9fr) minmax(280px, 0.6fr);
    gap: clamp(35px, 6vw, 90px);
}

.detail-number {
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.service-detail h2 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.service-detail > div p {
    max-width: 560px;
    color: #554349;
    font-size: 1.08rem;
}

.service-detail ul {
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
}

.service-detail li {
    padding-block: 10px;
    border-bottom: 1px solid #e8dfe1;
    color: #47363b;
    font-size: 0.9rem;
}

.service-detail li::before {
    content: "+";
    margin-right: 10px;
    color: var(--red);
    font-weight: 900;
}

.engagement-section {
    background: var(--blush);
}

.dark-heading > p {
    color: #5d4b50;
}

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

.engagement-grid article {
    min-height: 330px;
    padding: 28px;
    border: 1px solid #dcc9ce;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.45);
}

.engagement-grid article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 100px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 850;
}

.engagement-grid h3 {
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.engagement-grid p {
    margin: 0;
    color: #58464b;
}

/* Studio */

.studio-story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
    gap: 80px;
}

.story-statement {
    position: relative;
    min-height: 500px;
}

.story-statement h2 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-top: 155px;
    font-size: clamp(3.2rem, 6vw, 6.3rem);
}

.oversize-mark {
    position: absolute;
    top: -70px;
    left: -30px;
    color: var(--pink);
    font-family: var(--display);
    font-size: 36rem;
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 1;
}

.story-copy {
    align-self: center;
}

.story-copy > p:last-child {
    max-width: 600px;
    color: #604d52;
}

.principles-section {
    background: var(--ink);
    color: var(--white);
}

.principle-grid {
    display: grid;
    margin-top: 52px;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.principle-grid article {
    min-height: 290px;
    padding: 32px;
    background: var(--ink);
}

.principle-grid article > span {
    color: #f59aaa;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.principle-grid h3 {
    max-width: 430px;
    margin: 70px 0 15px;
    font-family: var(--display);
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.principle-grid p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.location-section {
    background: var(--white);
}

.location-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.7fr 1fr;
    gap: clamp(60px, 10vw, 150px);
}

.location-poster {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--pink);
    overflow: hidden;
}

.location-poster::before,
.location-poster::after {
    content: "";
    position: absolute;
    border: 30px solid var(--red);
    border-radius: 50%;
}

.location-poster::before { width: 280px; height: 280px; top: 95px; left: -75px; }
.location-poster::after { width: 180px; height: 180px; right: -50px; bottom: 45px; }

.location-poster span,
.location-poster strong {
    position: relative;
    z-index: 2;
}

.location-poster span {
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.location-poster strong {
    color: var(--red);
    font-family: var(--display);
    font-size: clamp(6rem, 11vw, 11rem);
    letter-spacing: -0.1em;
    line-height: 0.75;
}

.business-section {
    padding-block: 70px;
    background: var(--red);
    color: var(--white);
}

.business-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.75fr 0.75fr 0.65fr;
    gap: 50px;
}

.business-grid h2 {
    margin: 0;
    font-family: var(--display);
    font-size: 3.2rem;
    letter-spacing: -0.06em;
}

.business-grid address,
.business-grid > div:last-child {
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.86);
}

.business-grid a {
    color: var(--white);
}

/* Approach */

.approach-steps {
    background: var(--white);
}

.approach-step {
    display: grid;
    min-height: 320px;
    align-items: start;
    padding-block: 50px;
    border-top: 1px solid var(--line);
    grid-template-columns: 70px minmax(280px, 0.85fr) minmax(300px, 0.7fr);
    gap: clamp(40px, 7vw, 100px);
}

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

.step-index {
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.step-title > p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.step-title h2 {
    margin: 0;
    color: var(--red);
    font-size: clamp(4.6rem, 8vw, 8.8rem);
    line-height: 0.74;
}

.step-copy {
    padding-top: 48px;
}

.step-copy p {
    margin-bottom: 32px;
    color: #504045;
    font-size: 1.1rem;
}

.step-copy strong,
.step-copy span {
    display: block;
}

.step-copy strong {
    margin-bottom: 6px;
    color: var(--red-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.step-copy span {
    color: var(--muted);
    font-size: 0.9rem;
}

.decision-section {
    padding-block: 110px;
    background: var(--ink);
    color: var(--white);
}

.decision-grid {
    display: grid;
    grid-template-columns: 0.36fr 1fr;
    gap: 60px;
}

.decision-grid h2 {
    max-width: 900px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 6.2rem);
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.decision-grid > div > p {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Contact */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
    gap: clamp(45px, 8vw, 105px);
}

.contact-panel {
    position: sticky;
    top: 118px;
    padding: 35px;
    border-radius: var(--radius);
    background: var(--red);
    color: var(--white);
}

.contact-panel h2 {
    margin-bottom: 54px;
    font-size: clamp(2.7rem, 4.4vw, 4.6rem);
}

.contact-link {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    font-weight: 800;
    text-decoration: none;
}

.contact-link:nth-of-type(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.contact-link span {
    transition: transform 0.2s ease;
}

.contact-link:hover span {
    transform: rotate(45deg);
}

.contact-panel address {
    margin-top: 44px;
    color: rgba(255, 255, 255, 0.86);
}

.contact-note {
    margin: 40px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    line-height: 1.55;
}

.form-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.form-intro span {
    color: var(--red-dark);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.form-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.form-status {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 5px solid;
    border-radius: var(--radius-sm);
}

.form-status strong {
    display: block;
    margin-bottom: 5px;
}

.form-status p {
    margin: 0;
}

.form-success {
    border-color: #28744f;
    background: #e4f3eb;
    color: #17452f;
}

.form-error {
    border-color: var(--red);
    background: var(--blush);
    color: #6d1023;
}

.project-form {
    padding-top: 34px;
}

.form-row {
    display: grid;
    gap: 24px;
}

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

.field {
    margin-bottom: 26px;
}

.field label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 9px;
    font-size: 0.83rem;
    font-weight: 800;
}

.field label span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cdbfc2;
    border-radius: 10px;
    background: var(--paper);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
    min-height: 54px;
    padding: 0 14px;
}

.field textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(191, 23, 49, 0.1);
    outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #746368;
    opacity: 1;
}

.field-error input,
.field-error select,
.field-error textarea {
    border-color: var(--red);
}

.field small,
.consent-field small {
    display: block;
    margin-top: 7px;
    color: #9f142a;
    font-size: 0.78rem;
    font-weight: 700;
}

.consent-field {
    display: grid;
    align-items: start;
    margin: 5px 0 30px;
    grid-template-columns: 22px 1fr;
    gap: 11px;
}

.consent-field input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--red);
}

.consent-field label {
    color: #514146;
    font-size: 0.86rem;
}

.consent-field small {
    grid-column: 2;
    margin-top: -4px;
}

.form-submit {
    border: 0;
    cursor: pointer;
}

.form-fallback {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Legal */

.legal-hero {
    padding-block: 90px;
    border-bottom: 1px solid var(--line);
    background: var(--blush);
}

.legal-hero-grid {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto;
    gap: 60px;
}

.legal-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.8rem, 7.5vw, 7.8rem);
    letter-spacing: -0.075em;
    line-height: 0.85;
}

.legal-hero-grid > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.legal-hero-grid > p strong {
    color: var(--ink);
}

.legal-section {
    background: var(--white);
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    justify-content: space-between;
    gap: clamp(60px, 10vw, 150px);
}

.legal-aside {
    position: sticky;
    top: 120px;
    align-self: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.legal-aside > p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-aside nav {
    display: grid;
}

.legal-aside a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.legal-aside a:last-child {
    border: 0;
}

.legal-aside a[aria-current="page"] {
    color: var(--red-dark);
}

.legal-aside a[aria-current="page"]::before {
    content: "→";
    margin-right: 7px;
}

.legal-content {
    color: #49383d;
}

.legal-lede {
    margin-bottom: 60px;
    color: var(--ink);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    line-height: 1.5;
}

.legal-content h2 {
    margin: 58px 0 16px;
    font-family: var(--display);
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.legal-content h3 {
    margin: 28px 0 10px;
    font-size: 1.1rem;
}

.legal-content p,
.legal-content li,
.legal-content dd {
    line-height: 1.75;
}

.legal-content a {
    color: var(--red-dark);
    font-weight: 700;
}

.legal-content ul {
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-contact,
.legal-review-note {
    padding: 22px;
    border-left: 4px solid var(--red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--blush);
}

.legal-review-note {
    margin-top: 70px;
}

.legal-review-note p {
    margin: 5px 0 0;
    font-size: 0.86rem;
}

.legal-facts {
    margin: 25px 0 45px;
    border-top: 1px solid var(--line);
}

.legal-facts > div {
    display: grid;
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 160px 1fr;
    gap: 25px;
}

.legal-facts dt {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.legal-facts dd {
    margin: 0;
}

/* 404 */

.not-found-section {
    display: grid;
    min-height: 72vh;
    align-items: center;
    padding-block: 80px;
    background: var(--red);
    color: var(--white);
}

.not-found-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
}

.error-code {
    font-family: var(--display);
    font-size: clamp(10rem, 25vw, 24rem);
    font-weight: 900;
    letter-spacing: -0.14em;
    line-height: 0.65;
}

.error-code span {
    color: var(--pink);
}

.not-found-grid h1 {
    margin-bottom: 20px;
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.4rem);
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.not-found-grid p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
}

/* Footer */

.site-footer {
    padding-block: 80px 24px;
    background: var(--ink);
    color: var(--white);
}

.footer-top {
    display: grid;
    padding-bottom: 70px;
    grid-template-columns: 1.4fr 0.42fr 0.55fr 0.9fr;
    gap: 50px;
}

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

.footer-brand > p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

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

.footer-column > p {
    margin-bottom: 18px;
    color: #f59aaa;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-column a {
    display: inline-flex;
    min-height: 35px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-contact address {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Motion */

.will-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.will-reveal.reveal-delay {
    transition-delay: 0.12s;
}

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

/* Responsive */

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 40px, 1050px);
    }

    .site-nav {
        gap: 20px;
    }

    .site-nav ul {
        gap: 17px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.64fr);
        gap: 45px;
    }

    .signal-stage {
        min-height: 520px;
    }

    .format-card {
        min-height: 460px;
    }

    .format-symbol {
        font-size: 8rem;
    }

    .format-ring {
        width: 150px;
        height: 150px;
        border-width: 31px;
    }

    .footer-top {
        grid-template-columns: 1.25fr repeat(3, 0.65fr);
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .section {
        padding-block: 90px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        z-index: 999;
        inset: 82px 0 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 36px 24px 30px;
        background: var(--paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

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

    .site-nav ul {
        display: grid;
        gap: 0;
    }

    .site-nav ul a {
        min-height: 64px;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 1.65rem;
        letter-spacing: -0.05em;
    }

    .site-nav ul a::after {
        display: none;
    }

    .nav-cta {
        min-height: 54px;
    }

    .menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

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

    .home-hero {
        padding-top: 70px;
    }

    .home-hero h1 {
        font-size: clamp(4rem, 13vw, 7rem);
    }

    .signal-stage {
        width: min(100%, 600px);
        min-height: 560px;
        margin-inline: auto;
    }

    .split-intro,
    .closing-grid,
    .decision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-heading,
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .service-row {
        grid-template-columns: 48px minmax(220px, 0.8fr) 1fr 44px;
        gap: 20px;
    }

    .format-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        min-height: 430px;
    }

    .process-layout,
    .studio-preview-grid,
    .study-card,
    .story-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-title,
    .contact-panel {
        position: static;
    }

    .studio-poster,
    .location-poster {
        min-height: 540px;
    }

    .study-card:nth-child(even) .study-visual {
        order: initial;
    }

    .study-visual {
        min-height: 540px;
    }

    .service-detail,
    .approach-step {
        grid-template-columns: 54px 1fr;
    }

    .service-detail > ul,
    .approach-step .step-copy {
        grid-column: 2;
    }

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

    .business-grid > div:last-child {
        grid-column: 2;
    }

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

    .legal-aside {
        position: static;
    }

    .legal-aside nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 20px;
    }

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

    .footer-contact {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 32px);
    }

    html {
        scroll-padding-top: 82px;
    }

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

    .site-nav {
        inset-block-start: 72px;
    }

    .section {
        padding-block: 72px;
    }

    .eyebrow {
        margin-bottom: 17px;
        font-size: 0.67rem;
    }

    .home-hero {
        padding-block: 50px 64px;
    }

    .home-hero h1 {
        margin-bottom: 25px;
        font-size: clamp(3.4rem, 17vw, 5.4rem);
        line-height: 0.82;
    }

    .hero-lede {
        font-size: 1.02rem;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button,
    .button-row .text-link {
        width: 100%;
        justify-content: center;
    }

    .signal-stage {
        min-height: 470px;
        border-radius: 20px;
    }

    .signal-disc {
        top: 125px;
        width: 240px;
        height: 240px;
        border-width: 42px;
    }

    .frame-a { right: 22px; width: 150px; height: 120px; }
    .frame-b { top: 235px; right: 55px; width: 190px; height: 140px; }
    .frame-c { top: 335px; right: 18px; width: 145px; height: 95px; }

    .intro-section {
        padding-block: 100px;
    }

    .section h2 {
        font-size: clamp(2.6rem, 12vw, 4.3rem);
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading > p {
        font-size: 1rem;
    }

    .service-row {
        min-height: 0;
        padding-block: 27px;
        grid-template-columns: 38px 1fr 40px;
    }

    .service-row h3 {
        font-size: 2rem;
    }

    .service-row p {
        grid-column: 2 / 4;
        font-size: 0.9rem;
    }

    .service-arrow {
        width: 40px;
        height: 40px;
    }

    .section-kicker-row {
        flex-direction: column;
    }

    .micro-note {
        text-align: left;
    }

    .format-grid {
        margin-top: 42px;
    }

    .format-card {
        min-height: 430px;
        padding: 23px;
    }

    .process-list li {
        grid-template-columns: 45px 1fr;
    }

    .studio-poster,
    .location-poster {
        min-height: 480px;
    }

    .closing-cta,
    .decision-section {
        padding-block: 74px;
    }

    .closing-grid h2,
    .decision-grid h2 {
        font-size: clamp(3rem, 13vw, 4.7rem);
    }

    .page-hero {
        padding-block: 68px 75px;
    }

    .page-hero h1 {
        font-size: clamp(3.55rem, 16vw, 5.8rem);
    }

    .study-stack {
        gap: 68px;
    }

    .study-visual {
        min-height: 440px;
        padding: 22px;
    }

    .study-visual > strong {
        right: 22px;
        bottom: 22px;
        left: 22px;
        font-size: clamp(3.4rem, 17vw, 5.2rem);
    }

    .study-orbits i:nth-child(1) { width: 310px; }
    .study-orbits i:nth-child(2) { height: 310px; }

    .service-detail,
    .approach-step {
        min-height: 0;
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .service-detail h2 {
        font-size: 2.5rem;
    }

    .engagement-grid article {
        min-height: 300px;
    }

    .story-statement {
        min-height: 400px;
    }

    .story-statement h2 {
        margin-top: 120px;
    }

    .oversize-mark {
        font-size: 28rem;
    }

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

    .principle-grid article {
        min-height: 260px;
    }

    .principle-grid h3 {
        margin-top: 50px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .business-grid > div:last-child {
        grid-column: auto;
    }

    .approach-step .step-copy {
        padding-top: 12px;
    }

    .step-title > p {
        margin-bottom: 22px;
    }

    .step-title h2 {
        font-size: 4.5rem;
    }

    .contact-panel {
        padding: 27px;
    }

    .two-up {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .legal-hero {
        padding-block: 65px;
    }

    .legal-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .legal-hero h1 {
        font-size: clamp(3.5rem, 15vw, 5.7rem);
    }

    .legal-aside nav {
        grid-template-columns: 1fr 1fr;
    }

    .legal-facts > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .not-found-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .error-code {
        font-size: 11rem;
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

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

@media (max-width: 380px) {
    :root {
        --shell: calc(100% - 24px);
    }

    .brand-word {
        font-size: 1rem;
    }

    .home-hero h1 {
        font-size: 3.25rem;
    }

    .signal-stage {
        min-height: 430px;
    }

    .frame-b {
        right: 35px;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .will-reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .legal-aside,
    .closing-cta,
    .decision-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    .section,
    .legal-section {
        padding: 0;
    }

    .legal-layout {
        display: block;
    }

    a {
        color: #000;
    }
}
