:root {
    --ink: #20221f;
    --ink-soft: #555a54;
    --paper: #f5f3ee;
    --white: #fffdf8;
    --mist: #e3e2dc;
    --line: #c9c8c0;
    --sage: #65705f;
    --accent: #52665a;
    --accent-deep: #33483d;
    --shell: min(1280px, calc(100vw - 48px));
    --narrow: min(820px, calc(100vw - 48px));
    --space: clamp(64px, 7vw, 108px);
    --display: "Manrope", Arial, sans-serif;
    --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 {
    margin: 0 0 .6em;
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}
h1 { max-width: 1050px; font-size: clamp(48px, 6.8vw, 98px); }
h2 { font-size: clamp(36px, 4vw, 60px); }
h3 { font-size: clamp(23px, 2vw, 30px); }
p { margin: 0 0 1.35em; }
.site-shell { width: var(--shell); margin-inline: auto; }
.content-narrow { width: var(--narrow); }
.content-wide { max-width: 1100px; }
.section-space { padding-block: var(--space); }
.eyebrow {
    margin: 0 0 22px;
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    transform: translateY(-150%);
    padding: 10px 16px;
    background: var(--white);
}
.skip-link:focus { transform: none; }
.staging-ribbon {
    background: var(--ink);
    color: var(--white);
    padding: 6px 20px;
    font-size: 11px;
    letter-spacing: .13em;
    text-align: center;
    text-transform: uppercase;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 243, 238, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: -4px;
    padding-right: 4px;
}
.brand-name { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.brand-logo .custom-logo-link { display: block; }
.brand-logo .custom-logo { width: auto; max-width: 300px; max-height: 116px; object-fit: contain; }
.brand-logo-static { flex: 0 0 auto; }
.brand-image { width: auto; height: 128px; object-fit: contain; }
.primary-navigation { display: flex; align-items: center; gap: clamp(26px, 3vw, 48px); }
.primary-navigation ul { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 40px); padding: 0; margin: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation .sub-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 18px);
    left: -22px;
    min-width: 310px;
    display: grid;
    gap: 0;
    padding: 14px 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(32,34,31,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s;
}
.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: none; }
.primary-navigation .sub-menu a { display: block; padding: 10px 0; }
.primary-navigation a { font-size: 17px; font-weight: 600; text-decoration: none; }
.primary-navigation a:not(.button) { background-image: linear-gradient(var(--ink), var(--ink)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1px; transition: background-size .25s ease; }
.primary-navigation a:not(.button):hover,
.primary-navigation .current-menu-item > a { background-size: 100% 1px; }
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    padding: 13px 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.button:hover { border-color: var(--accent); background: transparent; color: var(--accent-deep); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--accent); background: var(--accent); color: var(--white); }
.button-small { min-height: 52px; padding: 12px 22px; font-size: 15px; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { background: transparent; color: var(--white); }
.text-link { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-weight: 600; text-decoration: none; }
.menu-toggle { display: none; }

.home-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 112px));
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #696d66;
    color: var(--white);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: scale(1.002); }
.hero-media-placeholder { background: linear-gradient(145deg, #878a82, #4a4f49 70%); }
.hero-shade { background: linear-gradient(90deg, rgba(16,18,16,.82) 0%, rgba(16,18,16,.6) 43%, rgba(16,18,16,.16) 78%), linear-gradient(0deg, rgba(16,18,16,.48), transparent 58%); }
.home-hero-copy { position: relative; z-index: 2; padding-block: clamp(94px, 11vw, 138px) clamp(64px, 7vw, 88px); }
.home-hero-copy > * { max-width: 790px; }
.home-hero .eyebrow { color: #c7d5cc; font-size: clamp(16px, 1.2vw, 18px); letter-spacing: .12em; }
.home-hero h1 { max-width: 900px; font-size: clamp(46px, 5.5vw, 82px); text-wrap: balance; }
.hero-intro { max-width: 680px; color: rgba(255,255,255,.9); font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.home-hero .button-outline { border-color: rgba(255,255,255,.75); color: var(--white); }
.home-hero .button-outline:hover { background: var(--white); color: var(--ink); }
.history-strip { padding: 27px 0; background: var(--accent); color: var(--white); }
.history-strip .site-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.history-strip p { margin: 0; font-size: clamp(17px, 1.25vw, 19px); line-height: 1.45; }
.history-strip strong { font-weight: 600; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .78fr); gap: clamp(56px, 8vw, 124px); align-items: start; }
.intro-grid.section-space { padding-block: clamp(68px, 7vw, 100px); }
.intro-grid .lead { font-family: var(--display); font-size: clamp(27px, 3.2vw, 46px); line-height: 1.3; letter-spacing: -.025em; }
.intro-aside { padding-top: 18px; border-top: 2px solid var(--accent); font-size: clamp(20px, 1.5vw, 22px); line-height: 1.58; }
.intro-aside .text-link { color: var(--accent-deep); font-size: 18px; }
.service-section { background: var(--white); }
.service-section.section-space { padding-block: clamp(72px, 7vw, 104px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading > .text-link { color: var(--accent-deep); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background .25s, color .25s, transform .25s; }
.service-card:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-3px); }
.service-number { color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.service-card:hover .service-number { color: inherit; }
.service-card h3 { font-size: clamp(25px, 2vw, 31px); }
.service-card p { margin: 0; color: var(--ink-soft); font-size: clamp(18px, 1.25vw, 20px); line-height: 1.52; }
.service-card:hover p { color: inherit; }
.image-copy-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 640px; }
.image-panel { min-height: 560px; background: linear-gradient(145deg, #c8c9c2, #777d75); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.copy-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 7vw, 104px); background: var(--ink); color: var(--white); }
.copy-panel .eyebrow { color: #c7d5cc; }
.copy-panel p:not(.eyebrow) { color: #d9dbd5; font-size: clamp(18px, 1.35vw, 21px); line-height: 1.6; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 24px; }
.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 52px; }
.project-filters a { padding: 9px 14px; border: 1px solid var(--line); font-size: 13px; font-weight: 500; text-decoration: none; }
.project-filters a:hover, .project-filters a.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.project-card { min-width: 0; }
.project-card-media { position: relative; aspect-ratio: 5 / 4; display: block; overflow: hidden; background: #d8d7d0; text-decoration: none; }
.project-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card-media:hover img { transform: scale(1.025); }
.image-placeholder { position: relative; width: 100%; height: 100%; display: grid; place-items: end start; padding: 26px; overflow: hidden; color: var(--ink-soft); background: linear-gradient(135deg, rgba(255,255,255,.38), transparent 55%); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.image-placeholder::before { position: absolute; inset: 18%; border: 1px solid rgba(32,34,31,.16); border-width: 1px 1px 0 0; content: ""; transform: skewY(-12deg); }
.project-card-copy { display: flex; justify-content: space-between; gap: 22px; padding-top: 20px; border-top: 1px solid transparent; }
.project-card-copy h3 { margin-bottom: 0; font-size: clamp(23px, 2vw, 30px); }
.project-card-copy h2 { margin: 0; font-size: clamp(25px, 2.5vw, 38px); }
.project-card-copy h2 a { text-decoration: none; }
.project-card-copy p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.project-card-copy .eyebrow { margin-bottom: 10px; font-size: 13px; }
.principles { background: var(--mist); }
.principle-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 270px; padding: clamp(28px, 3.2vw, 48px); background: var(--paper); }
.principle span { display: block; margin-bottom: 58px; color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.principle h3 { font-size: clamp(25px, 2vw, 31px); }
.principle p { font-size: clamp(18px, 1.3vw, 20px); line-height: 1.58; }
.cta-band { padding-block: clamp(72px, 9vw, 120px); background: var(--sage); color: var(--white); }
.cta-band-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 850px; margin-bottom: 0; }

.page-hero { border-bottom: 0; }
.page-hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 620px; }
.page-hero-copy-panel { display: flex; align-items: center; background: var(--ink); color: var(--white); }
.page-hero-copy-inner { width: min(100%, 760px); padding: clamp(64px, 7vw, 118px); }
.page-hero-copy-inner .eyebrow { color: #c7d5cc; }
.page-hero h1 { max-width: 780px; margin-bottom: .45em; font-size: clamp(46px, 4.2vw, 72px); text-wrap: balance; }
.page-hero-intro { max-width: 680px; margin-bottom: 30px; color: #d7ddd8; font-size: clamp(19px, 1.45vw, 23px); line-height: 1.58; }
.page-hero-intro p { margin: 0; }
.page-hero-link { color: var(--white); font-size: 17px; }
.page-hero-media { min-height: 620px; overflow: hidden; background: var(--mist); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.page-hero-visual:hover .page-hero-media img { transform: scale(1.018); }
.page-signal-strip { background: var(--accent); color: var(--white); }
.page-signal-strip .site-shell { display: grid; grid-template-columns: repeat(3, 1fr); }
.page-signal-strip span { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 78px; padding: 18px clamp(20px, 3vw, 42px); border-left: 1px solid rgba(255,255,255,.24); font-family: var(--display); font-size: clamp(18px, 1.4vw, 22px); text-align: center; }
.page-signal-strip span:last-child { border-right: 1px solid rgba(255,255,255,.24); }
.page-signal-strip b { font-family: var(--body); font-size: 12px; letter-spacing: .14em; opacity: .72; }
.page-content { padding-block: var(--space); }
.page-content-editorial { padding-block: 0; }
.entry-content > * { max-width: 820px; }
.entry-content > .alignwide,
.entry-content > .tch-wide { max-width: 1100px; }
.entry-content h2 { margin-top: 1.4em; }
.entry-content h3 { margin-top: 1.6em; }
.entry-content .wp-block-columns { gap: clamp(32px, 5vw, 80px); margin-block: 64px; }
.page-content-editorial .entry-content > * { max-width: none; }
.page-content-editorial .tch-section { display: grid; grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr); column-gap: clamp(48px, 7vw, 112px); margin: 0; padding-block: clamp(58px, 6vw, 94px); border-top: 1px solid var(--line); }
.page-content-editorial .tch-section:first-child { border-top: 0; }
.page-content-editorial .tch-kicker { grid-column: 1; grid-row: 1 / span 3; margin: 8px 0 0; color: var(--accent-deep); font-size: 14px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.page-content-editorial .tch-section h2 { grid-column: 2; max-width: 900px; margin-bottom: .55em; font-size: clamp(40px, 4.2vw, 64px); }
.page-content-editorial .tch-section > p { grid-column: 2; max-width: 820px; color: var(--ink-soft); font-size: clamp(19px, 1.45vw, 22px); line-height: 1.65; }
.page-content-editorial .tch-section:first-child,
.page-content-editorial .tch-section:last-child { display: block; max-width: 980px; margin-inline: auto; text-align: center; }
.page-content-editorial .tch-section:first-child .tch-kicker,
.page-content-editorial .tch-section:last-child .tch-kicker { margin: 0 0 18px; }
.page-content-editorial .tch-section:first-child h2,
.page-content-editorial .tch-section:last-child h2,
.page-content-editorial .tch-section:first-child > p,
.page-content-editorial .tch-section:last-child > p { margin-inline: auto; }
.page-content-editorial .tch-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: none; margin: 0 0 clamp(58px, 6vw, 94px); background: var(--line); border: 1px solid var(--line); }
.page-content-editorial .tch-card { min-height: 290px; padding: clamp(34px, 4vw, 54px); background: var(--white); transition: background .25s, color .25s, transform .25s; }
.page-content-editorial .tch-card:nth-child(4n+1), .page-content-editorial .tch-card:nth-child(4n) { background: #e8ece8; }
.page-content-editorial .tch-card:hover { position: relative; z-index: 2; background: var(--accent-deep); color: var(--white); transform: translateY(-4px); }
.page-content-editorial .tch-card h3 { max-width: 480px; font-size: clamp(27px, 2.4vw, 36px); }
.page-content-editorial .tch-card p { max-width: 540px; color: var(--ink-soft); font-size: clamp(18px, 1.25vw, 20px); line-height: 1.62; }
.page-content-editorial .tch-card:hover p { color: #e5ebe7; }
.page-content-editorial .tch-card p:last-child { margin-bottom: 0; }
.project-archive-content { padding-top: clamp(56px, 6vw, 90px); }
.project-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; background: #60645e; color: var(--white); }
.project-hero-image, .project-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { background: linear-gradient(0deg, rgba(20,22,19,.72), rgba(20,22,19,.05) 70%); }
.project-hero-copy { position: relative; z-index: 2; padding-bottom: clamp(70px, 8vw, 118px); }
.project-hero-copy .eyebrow { color: #c7d5cc; }
.project-hero-copy h1 { max-width: 1000px; font-size: clamp(58px, 7vw, 108px); }
.project-hero-copy > p:last-child { font-size: 22px; }
.project-detail-grid { display: grid; grid-template-columns: minmax(220px,.45fr) minmax(0,1fr); gap: clamp(60px, 10vw, 150px); }
.project-facts { padding: 34px; background: #e8ece8; }
.project-facts > div { padding: 24px 0; border-top: 1px solid var(--line); }
.project-facts span, .project-facts strong { display: block; }
.project-facts span { margin-bottom: 6px; color: var(--ink-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.project-facts strong { font-size: 19px; font-weight: 600; }
.project-copy { font-size: clamp(19px, 1.4vw, 22px); line-height: 1.66; }
.project-copy h2 { font-size: clamp(40px, 4vw, 62px); }
.contact-form { max-width: 900px; margin-top: 64px; padding: clamp(28px, 5vw, 64px); background: var(--white); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.form-field-full { grid-column: 1 / -1; }
.contact-form label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 52px; border: 1px solid #a5a69f; border-radius: 0; padding: 12px 14px; background: var(--white); color: var(--ink); font: inherit; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(110,119,104,.35); outline-offset: 2px; }
.form-notice { padding: 14px 18px; margin-bottom: 28px; border-left: 3px solid var(--sage); background: var(--mist); font-size: 14px; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; }
.form-consent input { width: 18px; min-height: 18px; margin-top: 5px; }
.contact-form button[disabled] { opacity: .55; cursor: not-allowed; }

.site-footer { padding-top: 90px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .8fr; gap: clamp(50px, 9vw, 130px); padding-bottom: 80px; }
.brand-footer .brand-mark { border-color: var(--white); }
.brand-footer .brand-image { height: 92px; filter: brightness(0) invert(1); }
.footer-positioning { max-width: 400px; margin-top: 28px; color: #c9cbc5; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { text-decoration: none; }
.site-footer .text-link { text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 24px; border-top: 1px solid #454942; color: #aeb1aa; font-size: 12px; }

@media (max-width: 980px) {
    :root { --shell: min(100% - 36px, 1280px); --narrow: min(100% - 36px, 820px); }
    .menu-toggle { display: inline-flex; align-items: center; gap: 10px; border: 0; padding: 12px; background: transparent; font: inherit; }
    .menu-toggle i, .menu-toggle i::before { width: 22px; height: 1px; display: block; background: var(--ink); content: ""; }
    .menu-toggle i::before { transform: translateY(6px); }
    .primary-navigation { position: absolute; inset: 150px 0 auto; display: none; align-items: stretch; flex-direction: column; padding: 26px 18px 36px; background: var(--paper); border-bottom: 1px solid var(--line); }
    .primary-navigation.is-open { display: flex; }
    .primary-navigation ul { align-items: stretch; flex-direction: column; gap: 0; }
    .primary-navigation .sub-menu { position: static; min-width: 0; display: block; padding: 0 0 8px 18px; border: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .primary-navigation .sub-menu li { border-bottom: 0; }
    .primary-navigation .sub-menu li a { padding: 9px 0; font-size: 14px; }
    .primary-navigation li { border-bottom: 1px solid var(--line); }
    .primary-navigation li a { display: block; padding: 14px 0; font-size: 17px; }
    .intro-grid, .image-copy-grid, .project-detail-grid, .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero-copy-panel { min-height: 540px; }
    .page-hero-media { min-height: 470px; }
    .page-content-editorial .tch-section { grid-template-columns: 1fr; row-gap: 26px; }
    .page-content-editorial .tch-kicker, .page-content-editorial .tch-section h2, .page-content-editorial .tch-section > p { grid-column: 1; grid-row: auto; }
    .page-content-editorial .tch-kicker { margin-top: 0; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .image-copy-grid { min-height: auto; }
    .copy-panel { min-height: 520px; }
    .principle-list { grid-template-columns: 1fr; }
    .principle { min-height: 200px; }
    .principle span { margin-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .header-inner { min-height: 110px; }
    .brand-mark { width: 38px; height: 38px; }
    .brand-name { max-width: 130px; font-size: 12px; line-height: 1.25; }
    .brand-logo .custom-logo { max-width: 230px; max-height: 84px; }
    .brand-image { height: 88px; }
    .primary-navigation { top: 110px; }
    .admin-bar .site-header { top: 46px; }
    .home-hero { min-height: 690px; }
    .hero-media img { object-position: 58% center; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .history-strip .site-shell, .section-heading, .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .history-strip .site-shell { display: flex; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 250px; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card-copy { align-items: flex-start; flex-direction: column; gap: 10px; }
    .cta-band-inner { display: flex; }
    .tch-card-grid, .form-grid { grid-template-columns: 1fr; }
    .page-content-editorial .tch-card-grid { grid-template-columns: 1fr; }
    .page-signal-strip .site-shell { grid-template-columns: 1fr; width: 100%; }
    .page-signal-strip span { min-height: 68px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding-inline: 22px; }
    .page-signal-strip span:last-child { border-right: 0; border-bottom: 0; }
    .page-hero-copy-panel { min-height: 520px; }
    .page-hero-copy-inner { padding: 54px 22px; }
    .page-hero h1 { font-size: clamp(43px, 12vw, 64px); }
    .page-hero-media { min-height: 340px; }
    .form-field-full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
}

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