:root {
    color-scheme: light;
    --bg: #eff6fb;
    --bg-deep: #deedf8;
    --paper: rgba(255, 255, 255, 0.72);
    --paper-strong: rgba(255, 255, 255, 0.9);
    --paper-line: rgba(15, 49, 74, 0.1);
    --paper-line-strong: rgba(15, 49, 74, 0.18);
    --ink: #0f314a;
    --ink-soft: #567287;
    --accent: #0d5d91;
    --accent-soft: #78b2d5;
    --accent-glow: rgba(120, 178, 213, 0.24);
    --shadow: 0 28px 54px rgba(15, 49, 74, 0.14);
    --shadow-soft: 0 16px 34px rgba(15, 49, 74, 0.08);
    --radius-xl: 44px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --container: 1220px;
    --font-body: "Onest", "Segoe UI", sans-serif;
    --font-display: "Sora", "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #1c1f24;
    --bg-deep: #121418;
    --paper: rgba(35, 38, 44, 0.82);
    --paper-strong: rgba(43, 47, 54, 0.94);
    --paper-line: rgba(202, 208, 215, 0.12);
    --paper-line-strong: rgba(202, 208, 215, 0.2);
    --ink: #f2f4f6;
    --ink-soft: #b0b6bd;
    --accent: #9fb2c2;
    --accent-soft: #c1ccd6;
    --accent-glow: rgba(193, 204, 214, 0.14);
    --shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.24);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink);
    background: linear-gradient(180deg, #f7fbff 0%, var(--bg) 42%, var(--bg-deep) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 251, 0.78)),
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.96), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(120, 178, 213, 0.2), transparent 20%),
        url("../assets/bg.png") center top / cover no-repeat;
    opacity: 0.5;
}

body::after {
    z-index: -1;
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.54), transparent 18%),
        radial-gradient(circle at 80% 28%, rgba(120, 178, 213, 0.14), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
}

::selection {
    background: rgba(13, 93, 145, 0.14);
    color: var(--ink);
}

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

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

button,
input,
textarea {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(13, 93, 145, 0.18);
    outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}

.site-main {
    padding: clamp(1rem, 2vw, 1.6rem) 0 clamp(4rem, 8vw, 7rem);
}

.page-frame,
.site-header__inner,
.site-footer__inner {
    width: min(var(--container), calc(100% - clamp(1.5rem, 5vw, 5rem)));
    margin: 0 auto;
}

.page-frame {
    display: grid;
    gap: clamp(4rem, 8vw, 7rem);
}

.site-main--page .page-frame {
    width: min(1320px, calc(100% - clamp(1.5rem, 5vw, 5rem)));
}

.site-main--page .lead-text {
    max-width: 45rem;
}

.site-main--page .section-head {
    max-width: 56rem;
}

.site-main--page .section-head--compact {
    max-width: 44rem;
}

.site-main--page .section-text {
    max-width: 46rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 0.85rem 0 0.3rem;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.72));
    border-bottom: 1px solid rgba(15, 49, 74, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.95rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.hero-grid > *,
.page-hero > *,
.split-heading > *,
.split-story > *,
.studio-ribbon > *,
.contact-canvas > *,
.cta-ribbon > *,
.blog-feature > *,
.blog-row > *,
.quiet-panel > *,
.blog-empty > * {
    min-width: 0;
}

.site-brand__logo {
    width: 3.35rem;
    height: 3.35rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(13, 93, 145, 0.12));
}

.site-brand__copy {
    display: grid;
    gap: 0.15rem;
}

.site-brand__name,
.site-brand__role {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-brand__name {
    color: var(--ink);
}

.site-brand__role {
    color: var(--ink-soft);
}

.site-nav {
    justify-self: center;
    min-width: 0;
}

.site-header__actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.55rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.site-theme-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem;
    border: 1px solid var(--paper-line-strong);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 251, 0.84));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-theme-switch__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    min-width: 2.3rem;
    min-height: 2.15rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(15, 49, 74, 0.68);
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-theme-switch__icon {
    font-size: 0.92rem;
    line-height: 1;
}

.site-theme-switch__button.is-active {
    background: linear-gradient(135deg, rgba(13, 93, 145, 0.16), rgba(120, 178, 213, 0.26));
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(13, 93, 145, 0.12);
}

.site-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.58rem, 1.25vw, 1.05rem);
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.site-nav a,
.site-header__cta,
.button-primary,
.button-secondary {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.67rem;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    padding: 0.2rem 0;
    color: rgba(15, 49, 74, 0.74);
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18rem;
    height: 1px;
    background: rgba(15, 49, 74, 0.38);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

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

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

.site-header__cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.82rem 1.05rem;
    border-radius: 999px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header__cta,
.button-primary {
    border: 1px solid rgba(13, 93, 145, 0.1);
    color: #f7fbff;
    background: linear-gradient(135deg, #0c507d, var(--accent));
    box-shadow: 0 16px 30px rgba(13, 93, 145, 0.18);
}

.button-secondary {
    border: 1px solid var(--paper-line-strong);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
    transform: translateY(-1px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(13, 93, 145, 0.22);
    box-shadow: 0 14px 24px rgba(15, 49, 74, 0.08);
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(13, 93, 145, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 251, 0.92));
    color: #0d5d91;
    box-shadow: 0 10px 20px rgba(13, 93, 145, 0.12);
    cursor: pointer;
}

.site-nav-toggle__line {
    position: absolute;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

html[data-theme="dark"] body {
    background: linear-gradient(180deg, #262a30 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

html[data-theme="dark"] body::before {
    background:
        linear-gradient(180deg, rgba(24, 26, 30, 0.94), rgba(18, 20, 24, 0.92)),
        radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.04), transparent 24%),
        radial-gradient(circle at 86% 14%, rgba(193, 204, 214, 0.05), transparent 18%),
        url("../assets/bg.png") center top / cover no-repeat;
    opacity: 0.68;
}

html[data-theme="dark"] body::after {
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.03), transparent 18%),
        radial-gradient(circle at 80% 28%, rgba(193, 204, 214, 0.03), transparent 18%),
        linear-gradient(135deg, rgba(8, 9, 12, 0.12), transparent 42%);
}

html[data-theme="dark"] .site-header {
    background: linear-gradient(180deg, rgba(28, 31, 36, 0.96), rgba(24, 27, 32, 0.9));
    border-bottom-color: rgba(202, 208, 215, 0.08);
}

html[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, rgba(28, 31, 36, 0.84), rgba(18, 20, 24, 0.96));
    border-top-color: rgba(202, 208, 215, 0.08);
}

html[data-theme="dark"] .site-brand__logo {
    filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(255, 255, 255, 0.06));
}

html[data-theme="dark"] .site-nav a {
    color: rgba(242, 244, 246, 0.72);
}

html[data-theme="dark"] .site-nav a::after {
    background: rgba(242, 244, 246, 0.34);
}

html[data-theme="dark"] .site-theme-switch {
    border-color: rgba(202, 208, 215, 0.16);
    background: linear-gradient(180deg, rgba(34, 37, 42, 0.96), rgba(43, 47, 54, 0.88));
}

html[data-theme="dark"] .site-theme-switch__button {
    color: rgba(242, 244, 246, 0.7);
}

html[data-theme="dark"] .site-theme-switch__button.is-active {
    background: linear-gradient(135deg, rgba(193, 204, 214, 0.14), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 0 0 1px rgba(193, 204, 214, 0.12);
}

html[data-theme="dark"] .site-nav-toggle {
    border-color: rgba(202, 208, 215, 0.16);
    background: linear-gradient(180deg, rgba(34, 37, 42, 0.96), rgba(43, 47, 54, 0.88));
    color: #f2f4f6;
    box-shadow: 0 10px 20px rgba(1, 7, 12, 0.28);
}

html[data-theme="dark"] .site-nav-toggle:hover,
html[data-theme="dark"] .site-nav-toggle:focus-visible,
html[data-theme="dark"] .site-nav-toggle[aria-expanded="true"] {
    border-color: rgba(202, 208, 215, 0.24);
    background: linear-gradient(180deg, rgba(42, 46, 52, 0.98), rgba(36, 39, 45, 0.94));
    color: #ffffff;
}

html[data-theme="dark"] .site-header__cta,
html[data-theme="dark"] .button-primary {
    border-color: rgba(202, 208, 215, 0.16);
    color: #f7f8f9;
    background: linear-gradient(135deg, #565c64, #737b85);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .site-header__cta:hover,
html[data-theme="dark"] .site-header__cta:focus-visible,
html[data-theme="dark"] .button-primary:hover,
html[data-theme="dark"] .button-primary:focus-visible {
    border-color: rgba(222, 226, 230, 0.2);
}

html[data-theme="dark"] .button-secondary {
    border-color: rgba(202, 208, 215, 0.16);
    background: rgba(35, 38, 44, 0.76);
    color: var(--ink);
}

html[data-theme="dark"] .hero-grid__stage::before,
html[data-theme="dark"] .hero-grid__panel,
html[data-theme="dark"] .hero-grid__caption,
html[data-theme="dark"] .page-summary,
html[data-theme="dark"] .contact-form-shell,
html[data-theme="dark"] .contact-sheet,
html[data-theme="dark"] .quiet-panel,
html[data-theme="dark"] .studio-ribbon,
html[data-theme="dark"] .blog-empty,
html[data-theme="dark"] .blog-article {
    border-color: rgba(202, 208, 215, 0.1);
    background: linear-gradient(180deg, rgba(35, 38, 44, 0.92), rgba(24, 27, 32, 0.84));
}

html[data-theme="dark"] .hero-grid__media,
html[data-theme="dark"] .split-story__media,
html[data-theme="dark"] .studio-ribbon__media,
html[data-theme="dark"] .blog-feature__media,
html[data-theme="dark"] .contact-sheet__photo {
    background: rgba(24, 27, 32, 0.72);
    box-shadow: var(--shadow);
}

html[data-theme="dark"] .hero-grid__measure span,
html[data-theme="dark"] .process-step__number,
html[data-theme="dark"] .blog-article blockquote {
    border-color: rgba(202, 208, 215, 0.12);
    background: rgba(35, 38, 44, 0.78);
}

html[data-theme="dark"] .process-track::before {
    background: linear-gradient(180deg, rgba(202, 208, 215, 0.18), rgba(176, 182, 189, 0.14));
}

html[data-theme="dark"] .field-row label,
html[data-theme="dark"] .footer-kicker,
html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .panel-label,
html[data-theme="dark"] .service-lane__kicker,
html[data-theme="dark"] .flow-row__index,
html[data-theme="dark"] .process-step__number {
    color: rgba(242, 244, 246, 0.58);
}

html[data-theme="dark"] .field-row input,
html[data-theme="dark"] .field-row textarea {
    border-bottom-color: rgba(202, 208, 215, 0.18);
    color: var(--ink);
}

html[data-theme="dark"] .field-row input::placeholder,
html[data-theme="dark"] .field-row textarea::placeholder {
    color: rgba(176, 182, 189, 0.72);
}

html[data-theme="dark"] .blog-article a {
    color: #d4dce3;
}

html[data-theme="dark"] ::selection {
    background: rgba(193, 204, 214, 0.2);
    color: #ffffff;
}

html[data-theme="dark"] a:focus-visible,
html[data-theme="dark"] button:focus-visible,
html[data-theme="dark"] input:focus-visible,
html[data-theme="dark"] textarea:focus-visible {
    outline-color: rgba(193, 204, 214, 0.18);
}

html[data-theme="dark"] .success {
    border-color: rgba(95, 179, 132, 0.2);
    background: rgba(16, 49, 34, 0.62);
    color: #bce7cb;
}

.site-nav-toggle__line:nth-child(1) {
    transform: translateY(-0.28rem);
}

.site-nav-toggle__line:nth-child(2) {
    transform: translateY(0);
}

.site-nav-toggle__line:nth-child(3) {
    transform: translateY(0.28rem);
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
    border-color: rgba(13, 93, 145, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(229, 241, 249, 0.98));
    box-shadow: none;
    outline: none;
}

.site-nav-toggle[aria-expanded="true"] {
    color: #0a4b74;
    background: linear-gradient(180deg, rgba(229, 241, 249, 0.98), rgba(214, 232, 244, 0.98));
    box-shadow: none;
}

.site-nav-toggle:focus,
.site-nav-toggle:focus-visible,
.site-nav-toggle:active {
    outline: none;
    box-shadow: none;
}

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

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

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

.site-footer {
    padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
    background: linear-gradient(180deg, rgba(241, 247, 251, 0.44), rgba(227, 239, 248, 0.82));
    border-top: 1px solid rgba(15, 49, 74, 0.08);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
    gap: 1.8rem;
    align-items: start;
}

.site-footer__lead,
.site-footer__column {
    display: grid;
    gap: 0.55rem;
}

.site-footer__title,
.display-title,
.section-title,
.flow-row__title,
.service-lane h3,
.process-step__body h3,
.pillar__title {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.045em;
    color: var(--ink);
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.site-footer__title {
    font-size: clamp(1.35rem, 1rem + 1vw, 2rem);
    line-height: 1.15;
}

.footer-kicker,
.eyebrow,
.panel-label,
.service-lane__kicker {
    color: rgba(15, 49, 74, 0.58);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.display-title {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    line-height: 0.96;
    max-width: 11.5ch;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
    max-width: 15ch;
}

.lead-text,
.section-text,
.panel-text,
.flow-row__text,
.service-lane p,
.process-step__body p,
.pillar__text,
.meta-list li,
.contact-sheet__block p,
.contact-sheet__block a,
.success {
    color: var(--ink-soft);
}

.lead-text {
    max-width: 39rem;
    font-size: 1.04rem;
    line-height: 1.82;
    margin-top: 1.35rem;
}

.section-head {
    display: grid;
    gap: 0.9rem;
    max-width: 48rem;
}

.section-head--compact {
    max-width: 36rem;
}

.section-text {
    max-width: 40rem;
    font-size: 1rem;
}

.section-text--aside {
    max-width: 27rem;
    align-self: end;
}

.panel-text {
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(1.8rem, 4vw, 4.8rem);
    align-items: center;
    min-height: min(92vh, 58rem);
}

.hero-grid__copy {
    padding-top: clamp(0.8rem, 2vw, 2rem);
}

.hero-grid__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-grid__stage {
    position: relative;
    min-height: 34rem;
    padding: 3.2rem 0 3rem;
}

.hero-grid__stage::before {
    content: "";
    position: absolute;
    inset: 1.4rem 0 0 4rem;
    border: 1px solid rgba(15, 49, 74, 0.12);
    border-radius: var(--radius-xl) 16px var(--radius-xl) 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
    box-shadow: var(--shadow-soft);
}

.hero-grid__media,
.split-story__media,
.studio-ribbon__media {
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-grid__media {
    position: relative;
    z-index: 1;
    width: calc(100% - 4.5rem);
    margin-left: auto;
    border-radius: var(--radius-xl) 16px var(--radius-xl) 16px;
    background: rgba(255, 255, 255, 0.58);
}

.hero-grid__media img {
    width: 100%;
    min-height: 32rem;
    object-fit: cover;
}

.hero-grid__panel,
.hero-grid__caption,
.page-summary,
.contact-form-shell,
.contact-sheet,
.quiet-panel,
.studio-ribbon {
    border: 1px solid rgba(15, 49, 74, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 253, 0.46));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-grid__panel,
.hero-grid__caption,
.page-summary {
    position: absolute;
    z-index: 2;
    max-width: 18rem;
    padding: 1.15rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.hero-grid__panel {
    top: 0;
    left: 0;
    border-radius: 28px 12px 28px 12px;
}

.hero-grid__caption {
    right: 0;
    bottom: 0;
    border-radius: 12px 28px 12px 28px;
}

.hero-grid__measure {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.85rem 0;
}

.hero-grid__measure span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(15, 49, 74, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-block {
    display: grid;
    gap: 1.8rem;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
    gap: 1.8rem;
    align-items: end;
}

.flow-list {
    border-top: 1px solid var(--paper-line-strong);
}

.flow-list--wide .flow-row {
    grid-template-columns: 4.5rem minmax(0, 0.95fr) minmax(0, 1.15fr);
}

.flow-row {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1.25rem;
    align-items: start;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--paper-line);
}

.site-main--page .flow-row {
    grid-template-columns: 4.5rem minmax(17rem, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
}

.flow-row__index,
.process-step__number {
    color: rgba(15, 49, 74, 0.5);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.flow-row__title,
.service-lane h3,
.process-step__body h3 {
    font-size: 1.42rem;
    line-height: 1.08;
}

.service-lanes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.service-lane {
    display: grid;
    gap: 0.8rem;
    padding-left: 1.2rem;
    border-left: 1px solid var(--paper-line-strong);
}

.service-lane:nth-child(2) {
    margin-top: 2rem;
}

.service-lane:nth-child(3) {
    margin-top: 4rem;
}

.service-lane h3 {
    font-size: 1.56rem;
    max-width: 13ch;
}

.studio-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.studio-ribbon__copy {
    display: grid;
    gap: 1rem;
    max-width: 34rem;
}

.studio-ribbon__media,
.split-story__media {
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    background: rgba(255, 255, 255, 0.42);
}

.studio-ribbon__media img,
.split-story__media img {
    width: 100%;
    min-height: 25rem;
    object-fit: cover;
}

.process-track {
    position: relative;
    display: grid;
    gap: 1rem;
    padding-left: 0.4rem;
}

.process-track::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0.9rem;
    bottom: 0.9rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(15, 49, 74, 0.2), rgba(120, 178, 213, 0.18));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.process-step__number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    margin-top: 0.2rem;
    border: 1px solid rgba(15, 49, 74, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.process-step__body {
    padding: 0.2rem 0 1.2rem;
    border-bottom: 1px solid var(--paper-line);
}

.process-step__body h3 {
    margin-bottom: 0.55rem;
}

.cta-ribbon,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(17rem, 0.76fr);
    gap: 1.8rem;
    align-items: end;
}

.cta-ribbon {
    padding-top: 1rem;
    border-top: 1px solid var(--paper-line-strong);
}

.cta-ribbon__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
}

.page-hero {
    align-items: start;
    padding-top: 0;
}

.page-hero__copy {
    max-width: 49rem;
    padding-top: clamp(2.4rem, 6vw, 6rem);
}

.page-hero__side {
    display: grid;
    gap: 1rem;
    padding-top: clamp(1.2rem, 3vw, 3rem);
}

.site-main--page .page-hero {
    grid-template-columns: minmax(0, 1.42fr) minmax(16rem, 0.58fr);
    gap: 2.4rem;
}

.site-main--page .page-hero__copy {
    max-width: 54rem;
}

.site-main--page .page-hero__side {
    width: 100%;
    max-width: 21rem;
    justify-self: end;
}

.page-summary {
    position: relative;
    max-width: none;
    padding: 1.2rem 1.25rem;
    border-radius: 30px 12px 30px 12px;
}

.meta-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.meta-list li {
    padding-top: 0.8rem;
    border-top: 1px solid var(--paper-line);
    font-size: 0.98rem;
}

.split-story {
    display: grid;
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.split-story__body {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
}

.split-story__body:first-child {
    justify-self: start;
}

.site-main--page .split-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.8rem, 4vw, 3.4rem);
}

.site-main--page .split-story__body {
    max-width: 46rem;
    justify-self: stretch;
}

.site-main--page .split-story__media {
    width: 100%;
    max-width: 35rem;
}

.site-main--page .split-story__media:first-child {
    justify-self: start;
}

.site-main--page .split-story__media:last-child {
    justify-self: end;
}

.split-story__media--portrait img {
    min-height: 28rem;
    object-position: center top;
}

.split-story__media--banner img {
    min-height: 22rem;
    object-position: 72% center;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pillar {
    display: grid;
    gap: 0.7rem;
    padding-top: 1rem;
    border-top: 1px solid var(--paper-line-strong);
}

.pillar__title {
    font-size: 1.2rem;
    line-height: 1.15;
}

.quiet-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.6rem;
    align-items: end;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    box-shadow: var(--shadow-soft);
}

.quiet-panel__copy {
    display: grid;
    gap: 1rem;
    max-width: 40rem;
}

.contact-canvas {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
    gap: clamp(1.4rem, 4vw, 2.6rem);
    align-items: stretch;
}

.site-main--page .contact-canvas {
    grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
    gap: clamp(1.6rem, 4vw, 3rem);
}

.contact-form-shell,
.contact-sheet {
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-form-shell {
    padding: clamp(1.4rem, 3vw, 2.2rem);
    display: grid;
    align-content: start;
}

.contact-form {
    display: grid;
    gap: 1.3rem;
    margin-top: 1.3rem;
}

.field-row {
    display: grid;
    gap: 0.45rem;
}

.field-row label {
    color: rgba(15, 49, 74, 0.58);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.field-row input,
.field-row textarea {
    width: 100%;
    padding: 0.95rem 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 49, 74, 0.18);
    background: transparent;
    color: var(--ink);
}

.field-row textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.contact-sheet {
    padding: 1.1rem 1.3rem;
    display: grid;
    align-content: start;
    gap: 0.2rem;
}

.contact-sheet__photo {
    overflow: hidden;
    margin: 0 0 0.4rem;
    border-radius: 28px 12px 28px 12px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: var(--shadow-soft);
}

.contact-sheet__photo img {
    width: 100%;
    min-height: 18rem;
    object-fit: cover;
    object-position: center top;
}

.contact-sheet__block {
    display: grid;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--paper-line);
}

.contact-sheet__block:first-child {
    border-top: 0;
    padding-top: 0.2rem;
}

.contact-sheet__block a,
.contact-sheet__block p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.display-title--article {
    max-width: 14ch;
    font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.blog-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
}

.blog-feature__copy {
    display: grid;
    gap: 1rem;
    max-width: 38rem;
}

.blog-feature__media {
    overflow: hidden;
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    box-shadow: var(--shadow);
}

.blog-feature__media img {
    width: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.blog-list {
    border-top: 1px solid var(--paper-line-strong);
}

.blog-row {
    display: grid;
    grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--paper-line);
}

.blog-row__meta,
.blog-row__body {
    display: grid;
    gap: 0.35rem;
}

.blog-row__date,
.blog-row__text,
.blog-empty__text {
    color: var(--ink-soft);
}

.blog-row__date {
    font-size: 0.9rem;
}

.blog-row__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.blog-row__text {
    max-width: 46rem;
    font-size: 0.98rem;
}

.blog-row__link {
    justify-self: end;
    white-space: nowrap;
}

.blog-empty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.6rem;
    align-items: end;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgba(15, 49, 74, 0.08);
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 250, 253, 0.52));
    box-shadow: var(--shadow-soft);
}

.blog-empty__copy {
    display: grid;
    gap: 0.8rem;
    max-width: 40rem;
}

.blog-empty__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--ink);
}

.blog-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
}

.blog-article {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(1.6rem, 4vw, 2.8rem);
    border: 1px solid rgba(15, 49, 74, 0.08);
    border-radius: var(--radius-xl) 18px var(--radius-xl) 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 250, 253, 0.5));
    box-shadow: var(--shadow-soft);
}

.blog-article > * + * {
    margin-top: 1.2rem;
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.blog-article h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.blog-article h3 {
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.blog-article p,
.blog-article li,
.blog-article blockquote {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-article ul,
.blog-article ol {
    margin: 0;
    padding-left: 1.25rem;
}

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

.blog-article img {
    width: 100%;
    height: auto;
    border-radius: 24px 12px 24px 12px;
    box-shadow: var(--shadow-soft);
}

.blog-article blockquote {
    margin: 0;
    padding: 1rem 1.2rem;
    border-left: 2px solid rgba(13, 93, 145, 0.24);
    background: rgba(255, 255, 255, 0.56);
}

.success {
    margin-top: 1.3rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(41, 114, 82, 0.18);
    border-radius: 16px;
    background: rgba(236, 247, 241, 0.72);
    color: #2b6f50;
}

.reveal {
    opacity: 0;
    transform: translateY(1.8rem);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 0.7rem;
    }

    .site-nav ul {
        gap: 0.55rem;
    }

    .site-theme-switch__button {
        width: 2.15rem;
        min-width: 2.15rem;
        min-height: 2.05rem;
    }

    .site-header__cta {
        padding: 0.78rem 0.9rem;
    }

    .hero-grid,
    .studio-ribbon,
    .blog-feature,
    .split-story,
    .contact-canvas,
    .page-hero,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-grid__stage {
        min-height: auto;
        padding-top: 4.5rem;
    }

    .hero-grid__stage::before {
        inset: 2.4rem 0 0 0;
    }

    .hero-grid__media {
        width: calc(100% - 1.5rem);
    }

    .hero-grid__caption {
        right: 1rem;
        bottom: -0.5rem;
    }

    .split-heading,
    .cta-ribbon,
    .quiet-panel,
    .blog-empty {
        grid-template-columns: 1fr;
    }

    .page-hero__copy,
    .split-story__body {
        max-width: none;
    }

    .site-main--page .page-hero__side,
    .site-main--page .split-story__media {
        max-width: none;
        justify-self: stretch;
    }

    .service-lanes,
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .service-lane:nth-child(2),
    .service-lane:nth-child(3) {
        margin-top: 0;
    }

    .site-footer__inner {
        gap: 1.4rem;
    }
}

@media (max-width: 1260px) {
    .site-brand__logo {
        width: 3rem;
        height: 3rem;
    }

    .site-brand__name,
    .site-brand__role {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .site-nav a,
    .site-header__cta {
        font-size: 0.63rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        justify-content: initial;
        align-items: center;
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: calc(50% - 50vw);
        right: calc(50% - 50vw);
        display: none;
        width: 100vw;
        padding: 1rem 1rem 1.15rem;
        border-top: 1px solid rgba(15, 49, 74, 0.08);
        border-bottom: 1px solid rgba(15, 49, 74, 0.08);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(248, 250, 252, 0.994));
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .site-nav a {
        width: 100%;
        padding: 0.72rem 0;
        border-bottom: 1px solid rgba(15, 49, 74, 0.08);
    }

    .site-nav li:last-child a {
        border-bottom: 0;
    }

    .site-header__cta {
        display: none;
    }

    .site-theme-switch {
        margin-left: auto;
    }

    .site-nav-toggle {
        justify-self: end;
        margin-right: 0.1rem;
    }

    .flow-row,
    .flow-list--wide .flow-row {
        grid-template-columns: 3.3rem minmax(0, 1fr);
    }

    .flow-row__text {
        grid-column: 2;
    }

    .blog-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .blog-row__link {
        justify-self: start;
    }
}

@media (max-width: 980px) {
    html[data-theme="dark"] .site-nav {
        border-top-color: rgba(202, 208, 215, 0.1);
        border-bottom-color: rgba(202, 208, 215, 0.1);
        background: linear-gradient(180deg, rgba(32, 35, 40, 0.995), rgba(24, 27, 32, 0.99));
    }

    html[data-theme="dark"] .site-nav a {
        border-bottom-color: rgba(202, 208, 215, 0.1);
    }
}

@media (max-width: 860px) {
    .site-main {
        padding: 0.9rem 0 4.5rem;
    }

    .page-frame,
    .site-header__inner,
    .site-footer__inner {
        width: calc(100% - 2rem);
    }

    .page-frame {
        gap: 3.2rem;
    }

    .section-block,
    .contact-canvas,
    .blog-feature,
    .split-story,
    .studio-ribbon,
    .quiet-panel,
    .blog-empty {
        gap: 1.25rem;
    }

    .display-title,
    .section-title,
    .display-title--article,
    .blog-empty__title,
    .blog-row__title,
    .flow-row__title,
    .service-lane h3,
    .process-step__body h3,
    .pillar__title,
    .blog-article h2,
    .blog-article h3 {
        max-width: none;
    }

    .page-hero__copy,
    .page-hero__side,
    .section-head,
    .section-head--compact,
    .lead-text,
    .section-text,
    .section-text--aside,
    .panel-text,
    .blog-feature__copy,
    .studio-ribbon__copy,
    .quiet-panel__copy,
    .blog-empty__copy,
    .blog-row__text,
    .blog-article {
        width: 100%;
        max-width: none;
    }

    .display-title {
        font-size: clamp(2.4rem, 8.4vw, 3.8rem);
        line-height: 1;
    }

    .section-title {
        font-size: clamp(1.9rem, 6.3vw, 2.8rem);
        line-height: 1.06;
    }

    .lead-text,
    .section-text,
    .panel-text,
    .flow-row__text,
    .service-lane p,
    .process-step__body p,
    .pillar__text,
    .meta-list li,
    .contact-sheet__block p,
    .contact-sheet__block a,
    .blog-row__text,
    .blog-empty__text,
    .blog-article p,
    .blog-article li,
    .blog-article blockquote {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .flow-list,
    .blog-list {
        border-top: 0;
        display: grid;
        gap: 0.85rem;
    }

    .flow-row,
    .flow-list--wide .flow-row,
    .site-main--page .flow-row,
    .blog-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 1rem 1rem 1.05rem;
        border: 1px solid rgba(15, 49, 74, 0.08);
        border-radius: 24px 12px 24px 12px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 250, 253, 0.5));
        box-shadow: var(--shadow-soft);
    }

    .flow-row__text,
    .blog-row__link {
        grid-column: auto;
    }

    .flow-row__title,
    .blog-row__title,
    .service-lane h3 {
        max-width: none;
    }

    .service-lanes,
    .pillar-grid {
        gap: 0.9rem;
    }

    .service-lane,
    .pillar,
    .meta-list li,
    .contact-sheet__block {
        padding: 1rem;
        border: 1px solid rgba(15, 49, 74, 0.08);
        border-radius: 24px 12px 24px 12px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 253, 0.48));
        box-shadow: var(--shadow-soft);
    }

    .service-lane,
    .pillar {
        border-left: 0;
        border-top: 1px solid rgba(15, 49, 74, 0.08);
    }

    .meta-list {
        gap: 0.85rem;
    }

    .meta-list li,
    .contact-sheet__block {
        border-top: 1px solid rgba(15, 49, 74, 0.08);
        padding-top: 1rem;
    }

    .contact-sheet__block:first-child {
        padding-top: 1rem;
    }

    .process-track {
        gap: 0.9rem;
        padding-left: 0;
    }

    .process-track::before {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .process-step__number {
        margin-top: 0;
    }

    .process-step__body {
        padding: 1rem;
        border: 1px solid rgba(15, 49, 74, 0.08);
        border-radius: 24px 12px 24px 12px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 253, 0.48));
        box-shadow: var(--shadow-soft);
    }

    .contact-form-shell,
    .contact-sheet,
    .quiet-panel,
    .studio-ribbon,
    .blog-empty,
    .blog-article,
    .page-summary {
        padding: 1.15rem;
        border-radius: 26px 14px 26px 14px;
    }

    .contact-sheet {
        gap: 0.85rem;
    }

    .contact-sheet__photo {
        margin-bottom: 0;
        border-radius: 24px 12px 24px 12px;
    }

    .contact-sheet__photo img,
    .hero-grid__media img,
    .blog-feature__media img,
    .studio-ribbon__media img,
    .split-story__media img {
        min-height: 16rem;
    }

    .blog-empty__actions,
    .cta-ribbon__actions,
    .hero-grid__actions {
        width: 100%;
    }
}

@media (max-width: 720px) {
    html {
        font-size: 15px;
    }

    .page-frame,
    .site-header__inner,
    .site-footer__inner {
        width: calc(100% - 1.75rem);
    }

    .site-brand__copy {
        display: none;
    }

    .site-header__actions {
        gap: 0.45rem;
    }

    .site-theme-switch {
        padding: 0.16rem;
    }

    .site-theme-switch__button {
        width: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }

    .site-theme-switch__icon {
        font-size: 0.84rem;
    }

    .display-title {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
        max-width: none;
    }

    .section-title {
        font-size: clamp(1.7rem, 9vw, 2.5rem);
        max-width: none;
    }

    .lead-text,
    .section-text,
    .panel-text,
    .flow-row__text,
    .service-lane p,
    .process-step__body p,
    .pillar__text,
    .meta-list li,
    .contact-sheet__block p,
    .contact-sheet__block a {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .hero-grid__actions,
    .cta-ribbon__actions,
    .blog-empty__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .hero-grid__stage {
        padding-top: 0;
        display: grid;
        gap: 1rem;
    }

    .hero-grid__stage::before {
        display: none;
    }

    .hero-grid__media {
        width: 100%;
        margin-left: 0;
    }

    .hero-grid__panel,
    .hero-grid__caption {
        position: relative;
        max-width: none;
        inset: auto;
    }

    .hero-grid__media img,
    .blog-feature__media img,
    .studio-ribbon__media img,
    .split-story__media img {
        min-height: 17rem;
    }

    .process-track {
        padding-left: 0;
    }

    .contact-sheet,
    .contact-form-shell,
    .quiet-panel,
    .studio-ribbon,
    .blog-empty,
    .blog-article,
    .page-summary {
        border-radius: 28px 14px 28px 14px;
    }
}

@media (max-width: 860px) {
    .page--profile .page-frame {
        gap: 2.5rem;
    }

    .page--profile .page-hero {
        gap: 1rem;
    }

    .page--profile .page-hero__copy,
    .page--profile .page-hero__side,
    .page--profile .split-story__body,
    .page--profile .section-head,
    .page--profile .quiet-panel__copy {
        max-width: none;
    }

    .page--profile .display-title {
        font-size: clamp(2.05rem, 7.8vw, 3rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .page--profile .section-title {
        font-size: clamp(1.7rem, 6.6vw, 2.3rem);
        line-height: 1.08;
    }

    .page--profile .lead-text,
    .page--profile .section-text,
    .page--profile .panel-text,
    .page--profile .flow-row__text,
    .page--profile .meta-list li {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .page--profile .page-summary,
    .page--profile .meta-list li,
    .page--profile .flow-row,
    .page--profile .quiet-panel {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page--profile .meta-list {
        gap: 0.75rem;
    }

    .page--profile .split-story {
        gap: 1rem;
    }

    .page--profile .split-story__media {
        max-width: none;
    }

    .page--profile .split-story__media img {
        min-height: 20rem;
        object-position: center top;
    }

    .page--profile .quiet-panel {
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .page--profile .page-frame {
        gap: 2.1rem;
    }

    .page--profile .display-title {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .page--profile .section-title {
        font-size: clamp(1.5rem, 7.4vw, 2rem);
    }

    .page--profile .page-summary,
    .page--profile .meta-list li,
    .page--profile .flow-row,
    .page--profile .quiet-panel {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .page--profile .split-story__media img {
        min-height: 17rem;
    }
}

@media (max-width: 860px) {
    .page--home .page-frame {
        gap: 2.35rem;
    }

    .page--home .hero-grid,
    .page--home .section-block,
    .page--home .studio-ribbon,
    .page--home .cta-ribbon {
        gap: 1rem;
    }

    .page--home .hero-grid__copy {
        padding-top: 0;
    }

    .page--home .hero-grid__actions {
        margin-top: 1rem;
        gap: 0.7rem;
    }

    .page--home .hero-grid__stage {
        gap: 0.8rem;
    }

    .page--home .hero-grid__panel {
        padding: 0.95rem 1rem;
    }

    .page--home .hero-grid__caption {
        display: none;
    }

    .page--home .hero-grid__measure {
        margin: 0.55rem 0 0.35rem;
        gap: 0.45rem;
    }

    .page--home .hero-grid__measure span {
        min-height: 1.85rem;
        padding: 0.36rem 0.62rem;
        font-size: 0.66rem;
    }

    .page--home .display-title {
        font-size: clamp(2.15rem, 8vw, 3.2rem);
    }

    .page--home .lead-text,
    .page--home .section-text,
    .page--home .panel-text,
    .page--home .flow-row__text,
    .page--home .service-lane p,
    .page--home .process-step__body p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .page--home .section-head {
        gap: 0.7rem;
    }

    .page--home .service-lanes,
    .page--home .process-track {
        gap: 0.75rem;
    }

    .page--home .service-lane,
    .page--home .process-step__body {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .page--home .studio-ribbon__media img,
    .page--home .hero-grid__media img {
        min-height: 14.5rem;
    }

    .page--home .cta-ribbon {
        padding-top: 0.8rem;
    }
}

@media (max-width: 560px) {
    .page--home .page-frame {
        gap: 1.95rem;
    }

    .page--home .display-title {
        font-size: clamp(1.95rem, 9.2vw, 2.55rem);
        line-height: 1.05;
    }

    .page--home .section-title {
        font-size: clamp(1.55rem, 7.2vw, 2.05rem);
        line-height: 1.1;
    }

    .page--home .hero-grid__panel,
    .page--home .flow-row,
    .page--home .service-lane,
    .page--home .process-step__body,
    .page--home .studio-ribbon,
    .page--home .cta-ribbon {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .page--home .hero-grid__media img,
    .page--home .studio-ribbon__media img {
        min-height: 13rem;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .split-heading,
    .studio-ribbon,
    .blog-feature,
    .quiet-panel,
    .blog-empty,
    .cta-ribbon,
    .page-hero,
    .site-main--page .page-hero,
    .split-story,
    .site-main--page .split-story,
    .contact-canvas,
    .site-main--page .contact-canvas,
    .site-footer__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-hero__copy,
    .page-hero__side,
    .site-main--page .page-hero__copy,
    .site-main--page .page-hero__side,
    .split-story__body,
    .site-main--page .split-story__body,
    .split-story__media,
    .site-main--page .split-story__media,
    .section-head,
    .section-head--compact,
    .section-text,
    .section-text--aside,
    .lead-text,
    .blog-feature__copy,
    .studio-ribbon__copy,
    .quiet-panel__copy,
    .blog-empty__copy {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .page-hero__side,
    .site-main--page .page-hero__side {
        padding-top: 0;
    }

    .split-story,
    .site-main--page .split-story {
        align-items: start;
    }

    .display-title,
    .display-title--article,
    .section-title,
    .flow-row__title,
    .service-lane h3,
    .process-step__body h3,
    .pillar__title,
    .blog-row__title,
    .blog-empty__title,
    .blog-article h2,
    .blog-article h3 {
        max-width: none;
    }

    .display-title {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
        line-height: 1.02;
    }

    .section-title {
        font-size: clamp(1.8rem, 6.2vw, 2.5rem);
        line-height: 1.08;
    }

    .lead-text,
    .section-text,
    .section-text--aside,
    .panel-text,
    .flow-row__text,
    .service-lane p,
    .process-step__body p,
    .pillar__text,
    .meta-list li,
    .contact-sheet__block p,
    .contact-sheet__block a,
    .blog-row__text,
    .blog-empty__text,
    .blog-article p,
    .blog-article li,
    .blog-article blockquote {
        max-width: none;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 1ms !important;
    }

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