:root {
  --charcoal: #171714;
  --charcoal-2: #24231f;
  --ivory: #f5f1e8;
  --paper: #fcfaf5;
  --white: #fff;
  --stone: #78766f;
  --line: #d9d4c8;
  --copper: #a65d3b;
  --copper-dark: #814329;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgb(23 23 20 / 10%);
  --radius: 3px;
  --header-height: 90px;
  --navigation-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--charcoal); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { max-width: 100%; overflow-wrap: break-word; font-family: var(--serif); font-weight: 400; hyphens: auto; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 5vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -.025em; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
.container { width: min(1220px, calc(100% - 40px)); margin-inline: auto; }
.container.narrow, .narrow { width: min(850px, calc(100% - 40px)); 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: 1000; top: 10px; left: 10px; transform: translateY(-150%); background: var(--white); padding: 10px 16px; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 16px; color: var(--copper); font-size: .72rem; font-weight: 750; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.lead { max-width: 760px; color: #55534c; font-size: clamp(1.08rem, 2vw, 1.4rem); line-height: 1.55; }

.site-header { position: sticky; z-index: 300; top: 0; border: 0; background: rgb(252 250 245 / 82%); padding: 10px 0; backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); transition: background .25s ease, border-color .25s ease; }
.header-inner { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: clamp(18px, 2vw, 32px); border: 1px solid rgb(23 23 20 / 9%); border-radius: 16px; background: rgb(252 250 245 / 94%); padding: 8px 10px 8px 18px; box-shadow: 0 14px 42px rgb(23 23 20 / 7%); }
.brand { display: inline-flex; min-width: 0; flex: none; align-items: center; gap: 12px; line-height: 1; }
.brand img { width: auto; max-width: 220px; max-height: 50px; object-fit: contain; }
.brand img.brand-icon { width: 46px; height: 46px; object-fit: contain; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; background: var(--charcoal); color: var(--ivory); font-family: var(--serif); font-size: 1.65rem; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand small { margin-top: 5px; color: var(--stone); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: clamp(13px, 1.45vw, 24px); font-size: clamp(.82rem, .76vw, .92rem); font-weight: 680; }
.desktop-nav > a:not(.button), .desktop-services-trigger { position: relative; flex: none; padding-block: 12px; }
.desktop-nav > a:not(.button)::after, .desktop-services-trigger::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: var(--copper); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.desktop-nav > a:not(.button):hover::after, .desktop-nav > a:not(.button):focus-visible::after, .desktop-services.is-open .desktop-services-trigger::after, .desktop-services-trigger:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .button-small { border-radius: 11px; padding-inline: 20px; box-shadow: 0 8px 20px rgb(23 23 20 / 12%); }
.desktop-services { position: relative; }
.desktop-services-trigger { display: inline-flex; align-items: center; gap: 7px; border: 0; background: transparent; color: inherit; font-weight: inherit; cursor: pointer; }
.desktop-services-trigger svg { transition: transform .24s var(--navigation-ease); }
.desktop-services.is-open .desktop-services-trigger svg { transform: rotate(180deg); }
.desktop-services-menu { position: absolute; top: calc(100% + 11px); left: -22px; width: min(720px, calc(100vw - 40px)); max-height: min(660px, calc(100dvh - var(--header-height) - 30px)); overflow-y: auto; overscroll-behavior: contain; border: 1px solid rgb(23 23 20 / 10%); background: rgb(252 250 245 / 98%); box-shadow: 0 30px 80px rgb(23 23 20 / 18%); opacity: 0; padding: 28px; pointer-events: none; transform: translateY(-10px); visibility: hidden; transition: opacity .22s ease, transform .28s var(--navigation-ease), visibility 0s linear .28s; }
.desktop-services-menu::before { position: absolute; top: -7px; left: 48px; width: 13px; height: 13px; border-top: 1px solid rgb(23 23 20 / 10%); border-left: 1px solid rgb(23 23 20 / 10%); background: var(--paper); content: ""; transform: rotate(45deg); }
.desktop-services.is-open .desktop-services-menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; transition-delay: 0s; }
.desktop-services-heading { display: grid; grid-template-columns: .6fr 1.4fr; gap: 24px; align-items: start; margin-bottom: 20px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.desktop-services-heading span { color: var(--copper-dark); font-size: .68rem; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.desktop-services-heading p { margin: 0; color: var(--stone); font-family: var(--serif); font-size: 1.05rem; line-height: 1.45; }
.service-menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 22px; }
.service-menu-link { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgb(217 212 200 / 75%); padding: 14px 8px; transition: border-color .2s ease, color .2s ease, padding .2s ease, background .2s ease; }
.service-menu-copy { min-width: 0; }
.service-menu-copy strong, .service-menu-copy small { display: block; }
.service-menu-copy strong { font-family: var(--serif); font-size: 1rem; font-weight: 600; line-height: 1.25; }
.service-menu-copy small { display: -webkit-box; overflow: hidden; margin-top: 5px; color: var(--stone); font-size: .7rem; font-weight: 450; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.service-menu-arrow { flex: none; color: var(--copper); opacity: 0; transform: translateX(-6px); transition: opacity .2s ease, transform .2s ease; }
.service-menu-link:hover, .service-menu-link:focus-visible { border-color: var(--copper); background: rgb(166 93 59 / 6%); color: var(--copper-dark); padding-right: 12px; padding-left: 12px; }
.service-menu-link:hover .service-menu-arrow, .service-menu-link:focus-visible .service-menu-arrow { opacity: 1; transform: translateX(0); }
.service-menu-empty { grid-column: 1 / -1; margin: 0; padding: 18px 8px; color: var(--stone); font-size: .82rem; }
.desktop-services-all, .mobile-services-all { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; border-top: 1px solid var(--charcoal); padding: 16px 8px 2px; color: var(--charcoal); font-size: .76rem; font-weight: 780; letter-spacing: .05em; text-transform: uppercase; }
.desktop-services-all span, .mobile-services-all span { color: var(--copper); font-size: 1rem; transition: transform .2s ease; }
.desktop-services-all:hover span, .desktop-services-all:focus-visible span, .mobile-services-all:hover span, .mobile-services-all:focus-visible span { transform: translateX(5px); }
.nav-toggle { position: relative; z-index: 20; display: none; width: 48px; height: 48px; flex: none; border: 1px solid rgb(23 23 20 / 13%); border-radius: 50%; background: rgb(252 250 245 / 88%); color: var(--charcoal); cursor: pointer; }
.nav-toggle-line { position: absolute; top: 50%; left: 50%; display: block; width: 21px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: opacity .2s ease, transform .3s var(--navigation-ease); }
.nav-toggle-line:nth-of-type(2) { transform: translate(-50%, calc(-50% - 7px)); }
.nav-toggle-line:nth-of-type(4) { transform: translate(-50%, calc(-50% + 7px)); }
.nav-toggle[aria-expanded="true"] { border-color: rgb(255 255 255 / 25%); background: rgb(23 23 20 / 80%); color: var(--white); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(2) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(4) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-navigation, .mobile-navigation-viewport { display: none; }
.navigation-overlay { position: fixed; z-index: 410; inset: 0; background: rgb(12 12 10 / 64%); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .3s ease, visibility 0s linear .3s; }
.navigation-overlay.is-visible { opacity: 1; pointer-events: auto; touch-action: none; visibility: visible; transition-delay: 0s; }
.floating-actions { position: fixed; z-index: 210; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 10px; opacity: 1; transition: opacity .2s ease, transform .22s var(--navigation-ease); }
.floating-action { position: relative; display: grid; width: 56px; height: 56px; flex: none; place-items: center; border: 1px solid rgb(255 255 255 / 25%); border-radius: 50%; color: var(--white); box-shadow: 0 14px 35px rgb(23 23 20 / 24%); transition: background .22s ease, box-shadow .22s ease, transform .22s var(--navigation-ease); }
.floating-phone { background: var(--copper); }
.floating-quote { display: none; background: var(--charcoal); }
.floating-action:hover, .floating-action:focus-visible { background: var(--copper-dark); box-shadow: 0 18px 42px rgb(23 23 20 / 30%); transform: translateY(-3px); }
.floating-action-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; border-radius: 2px; background: var(--charcoal); color: var(--white); opacity: 0; padding: 8px 11px; font-size: .72rem; font-weight: 650; pointer-events: none; transform: translate(5px, -50%); transition: opacity .18s ease, transform .18s ease; white-space: nowrap; }
.floating-action-tooltip::after { position: absolute; top: 50%; right: -5px; width: 10px; height: 10px; background: var(--charcoal); content: ""; transform: translateY(-50%) rotate(45deg); }
.floating-action:hover .floating-action-tooltip, .floating-action:focus-visible .floating-action-tooltip { opacity: 1; transform: translate(0, -50%); }
html.navigation-open, body.navigation-open { overscroll-behavior: none; }
body.navigation-open { width: 100%; }
body.navigation-open .floating-actions { opacity: 0; pointer-events: none; }
body.navigation-open .site-header { background: var(--charcoal); }
body.navigation-open .header-inner { border-color: rgb(255 255 255 / 13%); background: var(--charcoal); box-shadow: none; }
body.navigation-open .header-inner > .brand { opacity: 0; pointer-events: none; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid var(--charcoal); border-radius: var(--radius); background: var(--charcoal); color: var(--white); padding: 13px 22px; font-size: .83rem; font-weight: 750; letter-spacing: .035em; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { border-color: var(--copper); background: var(--copper); transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 10px 16px; }
.button-ghost { background: transparent; color: var(--charcoal); }
.button-light { border-color: var(--ivory); background: var(--ivory); color: var(--charcoal); }
.button-light:hover { border-color: var(--white); background: var(--white); color: var(--charcoal); }
.button-outline-light { border-color: rgb(255 255 255 / 50%); background: transparent; color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button-row.centered { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: .85rem; font-weight: 750; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: var(--ivory); }
.circle-link { display: grid; width: 48px; height: 48px; flex: none; place-items: center; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; font-size: 1.3rem; transition: background .2s, color .2s; }
.circle-link:hover { background: var(--ivory); color: var(--charcoal); }
.circle-link.dark { border-color: var(--line); }
.circle-link.dark:hover { background: var(--charcoal); color: var(--white); }

.hero { min-height: calc(100vh - var(--header-height)); overflow: hidden; background: var(--ivory); }
.hero-grid { display: grid; min-height: calc(100vh - var(--header-height)); grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(45px, 8vw, 110px); align-items: center; padding-block: 50px; }
.hero-copy, .section-heading > *, .split-copy > *, .pro-grid > * { min-width: 0; }
.hero-copy h1 { max-width: 750px; margin-bottom: 28px; hyphens: none; overflow-wrap: normal; }
.hero-copy .lead { max-width: 650px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 14px 30px; margin: 44px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; color: #55534c; font-size: .78rem; font-weight: 650; }
.trust-line li::before { color: var(--copper); content: "◆"; margin-right: 9px; font-size: .52rem; }
.hero-visual { position: relative; min-height: 680px; background: #ded9ce; }
.hero-visual img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.visual-placeholder { background:
  linear-gradient(130deg, transparent 48%, rgb(255 255 255 / 20%) 48% 52%, transparent 52%),
  repeating-linear-gradient(90deg, #d9d2c4 0 1px, transparent 1px 33.333%),
  #c9c0b1; }
.visual-placeholder::before { position: absolute; inset: 24px; border: 1px solid rgb(255 255 255 / 45%); content: ""; }
.material-card { position: absolute; right: -1px; bottom: 0; left: 15%; padding: clamp(28px, 5vw, 58px); background: var(--charcoal); color: var(--white); }
.material-card span, .material-card small, .material-card strong { display: block; }
.material-card span { color: #cf9477; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.material-card strong { max-width: 430px; margin: 16px 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.05; }
.material-card small { color: #b7b4ad; line-height: 1.5; }

.section { padding-block: clamp(80px, 11vw, 150px); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark .lead, .section-dark p:not(.eyebrow), .section-dark .service-card p { color: #bcb9b1; }
.section-soft { background: var(--ivory); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.split-copy { display: grid; grid-template-columns: minmax(170px, .45fr) 1.5fr; gap: clamp(30px, 8vw, 130px); }
.split-copy > div { max-width: 850px; }
.split-copy h2 { margin-bottom: 28px; }
.split-copy p:not(.eyebrow) { max-width: 760px; color: #57544d; font-size: 1.08rem; }
.section-dark .split-copy p:not(.eyebrow) { color: #bcb9b1; }
.section-number, .large-index { color: var(--copper); font-family: var(--serif); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3c3b36; border-left: 1px solid #3c3b36; }
.service-card { position: relative; min-height: 350px; border-right: 1px solid #3c3b36; border-bottom: 1px solid #3c3b36; padding: 38px; }
.service-card h3 a::after { position: absolute; inset: 0; content: ""; }
.service-card p { max-width: 310px; font-size: .92rem; }
.service-card .circle-link { position: absolute; right: 30px; bottom: 30px; z-index: 1; }
.card-index { display: block; margin-bottom: 55px; color: #6f6d65; font-family: var(--serif); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 40px; align-items: center; border-bottom: 1px solid var(--line); padding: 48px 0; }
.service-row h2 { margin-bottom: 12px; font-size: clamp(2rem, 3vw, 3.4rem); }
.service-row p { max-width: 720px; color: var(--stone); }
.large-index { font-size: 2rem; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.project-grid-large { grid-template-columns: repeat(2, 1fr); gap: 60px 35px; }
.project-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 22px; background: #d9d5cc; }
.project-media::after { position: absolute; inset: 0; background: linear-gradient(130deg, transparent 45%, rgb(255 255 255 / 25%)); content: ""; opacity: .4; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card a:hover img { transform: scale(1.025); }
.project-card h2, .project-card h3 { margin-bottom: 8px; }
.project-card p:not(.eyebrow) { color: var(--stone); font-size: .87rem; }
.section-dark .project-card .project-media { background: #302f2a; }
.empty-state { display: grid; min-height: 330px; place-content: center; border: 1px solid var(--line); padding: 45px; text-align: center; }
.empty-state h2, .empty-state h3 { max-width: 650px; margin-inline: auto; }
.empty-state p { max-width: 650px; margin-inline: auto; color: var(--stone); }
.empty-state.light { border-color: #3c3b36; }
.empty-icon { color: var(--copper); font-size: 2rem; }
.pro-panel { background: #d8c5b7; }
.pro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.pro-grid h2 { max-width: 760px; margin-bottom: 0; }
.pro-grid p { font-size: 1.08rem; }
.method h2 { max-width: 760px; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 65px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-grid li { min-height: 230px; border-right: 1px solid var(--line); padding: 32px 28px 24px 0; }
.method-grid li:not(:first-child) { padding-left: 28px; }
.method-grid li:last-child { border-right: 0; }
.method-grid span { display: block; margin-bottom: 60px; color: var(--copper); font-family: var(--serif); }
.method-grid h3 { margin-bottom: 14px; }
.method-grid p { color: var(--stone); font-size: .9rem; }
.zone-section { border-top: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 45px; }
.review-grid blockquote { margin: 0; border: 1px solid var(--line); padding: 35px; background: var(--white); }
.review-grid blockquote p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.review-grid footer { color: var(--copper-dark); font-size: .82rem; font-weight: 700; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 24px 38px 24px 0; cursor: pointer; font-family: var(--serif); font-size: 1.25rem; }
.accordion details > div { padding: 0 35px 22px 0; color: var(--stone); }
.final-cta { padding-block: clamp(90px, 12vw, 160px); background: var(--copper-dark); color: var(--white); text-align: center; }
.final-cta h2 { max-width: 980px; margin-inline: auto; }
.final-cta p:not(.eyebrow) { max-width: 720px; margin-inline: auto; color: #e0cfc6; }
.final-cta .eyebrow { color: #e5b8a3; }

.page-hero, .form-hero { padding-block: clamp(90px, 12vw, 160px); background: var(--ivory); }
.page-hero.compact { padding-block: 70px; }
.page-hero h1 { margin-bottom: 28px; }
.page-hero-dark { background: var(--charcoal); color: var(--white); }
.page-hero-dark .lead { color: #bcb9b1; }
.breadcrumbs { display: flex; overflow: hidden; align-items: center; gap: 10px; padding-block: 20px; color: var(--stone); font-size: .76rem; white-space: nowrap; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.detail-hero { padding-block: 50px 80px; }
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.detail-media { position: relative; min-height: 580px; background: #d8d2c7; }
.detail-media img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 780px); gap: 90px; }
.article-layout aside { position: sticky; top: 115px; align-self: start; }
.article-layout aside a { display: block; border-bottom: 1px solid var(--line); padding: 10px 0; color: var(--stone); font-size: .82rem; }
.prose { font-size: 1.05rem; }
.prose h2 { margin: 48px 0 20px; }
.prose > h2:first-child { margin-top: 0; }
.prose p { color: #4f4d47; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.feature-grid article { min-height: 230px; border-right: 1px solid var(--line); padding: 35px 35px 25px 0; }
.feature-grid article:not(:first-child) { padding-left: 35px; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { display: block; margin-bottom: 45px; color: var(--copper); }
.feature-grid h2 { font-size: clamp(1.6rem, 2.5vw, 2.5rem); }
.section-dark .feature-grid { border-color: #3c3b36; }
.section-dark .feature-grid article { border-color: #3c3b36; }
.link-list { border-top: 1px solid var(--line); }
.link-list > a, .link-list > div { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 20px 4px; font-family: var(--serif); font-size: 1.25rem; }
.link-list a:hover { color: var(--copper-dark); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.area-grid article { min-height: 280px; border: 1px solid var(--line); padding: 38px; background: var(--white); }
.area-grid article h2 { font-size: 2.2rem; }
.filters { display: flex; flex-wrap: wrap; align-items: end; gap: 14px; margin-bottom: 55px; border: 1px solid var(--line); padding: 20px; background: var(--white); }
.filters label { display: grid; gap: 6px; color: var(--stone); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.filters select { min-width: 170px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); padding: 10px 35px 10px 12px; color: var(--charcoal); }
.filter-reset { padding: 10px; color: var(--stone); font-size: .82rem; text-decoration: underline; }
.project-hero { padding: 70px 0 0; }
.project-hero h1 { max-width: 1040px; margin-bottom: 25px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 30px; margin-bottom: 40px; color: var(--stone); font-size: .82rem; }
.wide-image { width: 100%; max-height: 780px; object-fit: cover; }
.project-story { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px 100px; }
.project-story article p:not(.eyebrow) { color: #55534c; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { display: flex; justify-content: space-between; padding-top: 10px; color: #aaa79f; font-size: .78rem; }
.gallery figcaption span { color: #db9a7c; text-transform: uppercase; }
.team-grid, .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-grid article img, .article-grid article img { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 24px; object-fit: cover; }
.team-grid article h2, .article-grid article h2 { font-size: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.contact-card { position: relative; min-height: 280px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 38px; background: var(--white); }
.contact-card:nth-child(odd) { border-left: 1px solid var(--line); }
.contact-card:nth-child(-n+2) { border-top: 1px solid var(--line); }
.contact-card > span { display: block; margin-bottom: 50px; color: var(--copper); }
.contact-card h2 { margin-bottom: 15px; }
.contact-card strong { overflow-wrap: anywhere; }
.contact-card.accent { background: var(--copper); color: var(--white); }
.contact-card.accent > span { color: var(--white); }
.notice { border-left: 3px solid var(--copper); padding: 25px 30px; background: var(--ivory); }
.article-hero { padding: 80px 0; background: var(--ivory); }
.article-hero .wide-image { margin-top: 55px; }
.article-body { max-width: 780px; padding-block: 80px 120px; }

.form-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.form-heading h1 { margin-bottom: 24px; }
.form-promise { display: grid; gap: 10px; border-left: 1px solid var(--line); padding-left: 35px; }
.form-promise span { color: #514e47; font-size: .85rem; }
.form-promise span::before { color: var(--copper); content: "✓"; margin-right: 10px; }
.form-section { padding: 60px 0 120px; }
.form-shell { display: grid; grid-template-columns: minmax(0, 820px) 1fr; gap: 45px 80px; align-items: start; }
.form-progress { grid-column: 1 / -1; }
.form-progress > div:first-child { display: flex; justify-content: space-between; color: var(--stone); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.progress-track { overflow: hidden; height: 4px; margin-top: 12px; background: var(--line); }
.progress-track span { display: block; width: 20%; height: 100%; background: var(--copper); transition: width .25s ease; }
.form-shell form { min-width: 0; padding: clamp(25px, 5vw, 58px); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step[hidden] { display: none; }
.form-step legend { margin-bottom: 8px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); }
.form-step legend span { color: var(--copper); font-size: .45em; vertical-align: top; }
.step-intro { margin-bottom: 35px; color: var(--stone); }
.field { margin-bottom: 26px; }
.field > label:not(.consent-label) { display: block; margin-bottom: 8px; font-size: .8rem; font-weight: 750; }
.required { margin-left: 4px; color: var(--copper); }
.form-control, .field select, .field textarea, .field input[type="text"], .field input[type="email"], .field input[type="number"], .field input[type="file"] { width: 100%; min-height: 50px; border: 1px solid #c8c3b9; border-radius: var(--radius); background: var(--paper); padding: 12px 14px; color: var(--charcoal); }
.field textarea { resize: vertical; }
.field input[type="file"] { padding: 10px; }
.field > div > ul, .field > ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.field li label { display: flex; min-height: 52px; align-items: center; gap: 11px; border: 1px solid var(--line); padding: 11px 14px; background: var(--paper); cursor: pointer; }
.field input[type="radio"], .field input[type="checkbox"] { width: 18px; height: 18px; flex: none; accent-color: var(--copper); }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: .85rem; }
.consent-label input { margin-top: 4px; }
.help-text { display: block; margin-top: 6px; color: var(--stone); font-size: .74rem; }
.field-error input, .field-error select, .field-error textarea, .field-error li label { border-color: #a22e2e; }
.error-text, .form-errors { margin-top: 7px; color: #982b2b; font-size: .8rem; font-weight: 650; }
.form-errors { margin-bottom: 22px; border: 1px solid #d7aaaa; padding: 12px; background: #fff2f2; }
.form-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 20px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.privacy-note { color: var(--stone); font-size: .75rem; }
.privacy-note a { text-decoration: underline; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 24px; }
.form-nav [data-next], .form-nav [data-submit] { margin-left: auto; }
.form-aside { position: sticky; top: 115px; border-top: 2px solid var(--copper); padding-top: 20px; color: var(--stone); font-size: .88rem; }
.form-aside a:not(.text-link) { color: var(--charcoal); font-size: 1.1rem; font-weight: 750; }
.simple-form { grid-template-columns: minmax(0, 720px) 1fr; }
.success-page, .error-page { display: grid; min-height: 70vh; place-items: center; padding-block: 90px; text-align: center; }
.success-mark { display: grid; width: 72px; height: 72px; place-items: center; margin: 0 auto 28px; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper); font-size: 1.7rem; }
.reference { display: inline-block; margin: 25px auto; border: 1px solid var(--line); padding: 12px 18px; background: var(--white); }

.quiz-hero { padding: clamp(68px, 9vw, 120px) 0 110px; background: var(--ivory); }
.quiz-hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; align-items: end; }
.quiz-hero h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.9rem); }
.quiz-hero .lead { max-width: 720px; margin-bottom: 0; }
.quiz-trust { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.quiz-trust li { min-width: 0; padding: 22px 12px 0 0; }
.quiz-trust strong, .quiz-trust span { display: block; }
.quiz-trust strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.quiz-trust span { margin-top: 4px; color: var(--stone); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.quiz-section { padding: 0 0 clamp(90px, 10vw, 140px); background: linear-gradient(var(--ivory) 0 105px, var(--paper) 105px); }
.quiz-layout { display: grid; grid-template-columns: minmax(0, 850px) minmax(240px, 1fr); gap: clamp(35px, 6vw, 85px); align-items: start; }
.quiz-main { min-width: 0; border: 1px solid var(--line); background: var(--white); box-shadow: 0 28px 80px rgb(23 23 20 / 9%); }
.quiz-progress { border-bottom: 1px solid var(--line); padding: 20px clamp(24px, 5vw, 52px) 18px; background: #f8f5ee; }
.quiz-progress-copy { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 11px; color: var(--stone); font-size: .68rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.quiz-save-state { color: var(--copper-dark); font-weight: 650; letter-spacing: 0; text-align: right; text-transform: none; }
.quiz-main .progress-track { margin-top: 0; }
.quiz-main form { min-width: 0; padding: clamp(30px, 6vw, 58px); }
.quiz-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.quiz-step[hidden] { display: none; }
.quiz-step legend { max-width: 700px; margin-bottom: 12px; font-family: var(--serif); font-size: clamp(2.1rem, 4.2vw, 3.65rem); line-height: 1.05; }
.quiz-step legend span { margin-right: 10px; color: var(--copper); font-family: var(--sans); font-size: .32em; font-weight: 780; letter-spacing: .1em; vertical-align: top; }
.quiz-step .step-intro { max-width: 650px; margin-bottom: 38px; color: var(--stone); font-size: .96rem; }
.quiz-field { margin-bottom: 27px; }
.quiz-question-label { display: block; margin-bottom: 11px; font-size: .77rem; font-weight: 780; letter-spacing: .03em; }
.quiz-field .form-control, .quiz-field > input:not([type="checkbox"]):not([type="radio"]), .quiz-field > select, .quiz-field > textarea { width: 100%; min-height: 54px; border: 1px solid #c8c3b9; border-radius: 2px; background: #fbfaf6; padding: 13px 15px; color: var(--charcoal); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.quiz-field textarea.form-control { min-height: 125px; resize: vertical; }
.quiz-field .form-control:focus, .quiz-field > input:focus, .quiz-field > select:focus, .quiz-field > textarea:focus { border-color: var(--copper); background: var(--white); box-shadow: 0 0 0 3px rgb(166 93 59 / 11%); outline: 0; }
.quiz-field > div[id^="id_"], .quiz-field > ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.quiz-field > div[id^="id_"] > div, .quiz-field > ul > li { min-width: 0; }
.quiz-field > div[id^="id_"] label, .quiz-field > ul label { display: flex; min-height: 62px; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 2px; background: #fbfaf6; padding: 13px 15px; cursor: pointer; font-size: .85rem; font-weight: 660; line-height: 1.3; transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease; }
.quiz-field > div[id^="id_"] label:hover, .quiz-field > ul label:hover { border-color: #b7856d; background: #fffaf6; transform: translateY(-1px); }
.quiz-field > div[id^="id_"] label:has(input:checked), .quiz-field > ul label:has(input:checked) { border-color: var(--copper); background: rgb(166 93 59 / 9%); color: var(--copper-dark); box-shadow: inset 0 0 0 1px var(--copper); }
.quiz-field input[type="radio"], .quiz-field input[type="checkbox"] { width: 19px; height: 19px; flex: none; accent-color: var(--copper); }
.quiz-consent { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--line); background: #fbfaf6; padding: 16px; cursor: pointer; font-size: .8rem; line-height: 1.5; }
.quiz-consent input { margin-top: 2px; }
.quiz-field .help-text { margin-top: 8px; }
.quiz-field.field-error-live > input, .quiz-field.field-error-live > select, .quiz-field.field-error-live > textarea, .quiz-field.field-error-live > div[id^="id_"] { outline: 2px solid #a22e2e; outline-offset: 3px; }
.quiz-navigation { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 14px; margin-top: 42px; border-top: 1px solid var(--line); padding-top: 25px; }
.quiz-navigation [hidden] { display: none !important; }
.quiz-back { display: inline-flex; min-height: 48px; align-items: center; gap: 9px; border: 0; background: transparent; color: var(--stone); padding: 10px 4px; font-size: .78rem; font-weight: 740; cursor: pointer; }
.quiz-back:hover { color: var(--charcoal); }
.quiz-next, .quiz-submit { min-width: 180px; margin-left: auto; gap: 18px; }
.quiz-next span, .quiz-submit span { transition: transform .2s ease; }
.quiz-next:hover span, .quiz-submit:hover span { transform: translateX(4px); }
.quiz-aside { position: sticky; top: calc(var(--header-height) + 30px); padding-top: 12px; }
.quiz-aside-index { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 55px; background: var(--charcoal); color: var(--ivory); font-family: var(--serif); font-size: 1.8rem; }
.quiz-aside h2 { margin-bottom: 22px; font-size: clamp(2rem, 3vw, 3rem); }
.quiz-aside p:not(.eyebrow) { color: var(--stone); font-size: .9rem; }
.quiz-aside .text-link { margin-top: 14px; }

.site-footer { padding: 70px 0 90px; background: var(--charcoal); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 55px; }
.brand-footer { margin-bottom: 25px; }
.brand-footer .brand-mark { background: var(--ivory); color: var(--charcoal); }
.footer-grid > div > p { max-width: 320px; color: #aaa79f; font-size: .85rem; }
.footer-grid h2 { margin-bottom: 20px; color: #77746c; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin: 8px 0; color: #d4d1c9; font-size: .84rem; }
.footer-grid > div > a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; border-top: 1px solid #3c3b36; padding-top: 22px; color: #77746c; font-size: .7rem; }
.messages { padding-top: 12px; }
.messages p { border-left: 3px solid var(--copper); padding: 10px 14px; background: var(--ivory); }

@media (min-width: 1101px) and (max-width: 1536px) {
  body { font-size: 15px; }
  .container { width: min(1220px, calc(100% - clamp(160px, 16vw, 300px))); }
  h1 { font-size: clamp(3rem, 3.8vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 2.7vw, 3rem); }
  .site-header { padding-block: 8px; }
  .header-inner { min-height: 64px; }
  .brand img { max-height: 46px; }
  .desktop-nav { gap: clamp(11px, 1.15vw, 17px); font-size: .84rem; }
  .desktop-nav .button-small { min-height: 42px; padding-inline: 16px; font-size: .84rem; }
  .button { min-height: 46px; padding: 11px 19px; font-size: .82rem; }
  .eyebrow { font-size: .68rem; }
  .hero-grid { gap: clamp(42px, 6vw, 78px); padding-block: 42px; }
  .hero-visual { min-height: 620px; }
  .material-card strong { font-size: clamp(1.8rem, 3vw, 3rem); }
  .service-row h2 { font-size: clamp(1.8rem, 2.5vw, 2.8rem); }
  .feature-grid h2 { font-size: clamp(1.5rem, 2vw, 2.1rem); }
  .form-step legend { font-size: clamp(1.8rem, 3vw, 2.8rem); }
  .quiz-hero h1 { font-size: clamp(2.8rem, 4.5vw, 4.7rem); }
  .quiz-step legend { font-size: clamp(1.9rem, 3.3vw, 3rem); }
  .quiz-aside h2 { font-size: clamp(1.8rem, 2.4vw, 2.5rem); }
  .section { padding-block: clamp(72px, 8vw, 118px); }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .container { width: min(980px, calc(100% - 80px)); }
}

@media (max-width: 1180px) and (min-width: 1101px) {
  .desktop-nav { gap: 11px; font-size: .82rem; }
  .desktop-nav .button-small { padding-inline: 13px; }
  .brand { gap: 9px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .55rem; }
}

@media (max-width: 1100px) {
  :root { --header-height: 84px; }
  .site-header { padding-block: 8px; }
  .header-inner { min-height: 68px; border-radius: 14px; }
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-navigation-viewport { position: fixed; z-index: 420; top: 0; left: 0; display: block; width: 100vw; height: 100vh; height: 100dvh; overflow: hidden; pointer-events: none; }
  .mobile-navigation { position: absolute; top: 0; right: 0; display: block; width: min(420px, calc(100vw - 20px)); height: 100%; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; background: var(--charcoal); color: var(--white); opacity: 0; pointer-events: none; transform: translateX(104%); visibility: hidden; transition: opacity .25s ease, transform .32s var(--navigation-ease), visibility 0s linear .32s; scrollbar-gutter: stable; }
  .mobile-navigation.is-open { opacity: 1; pointer-events: auto; transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .mobile-navigation-inner { display: flex; min-height: 100%; flex-direction: column; padding: max(18px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); }
  .mobile-panel-header { position: sticky; z-index: 2; top: 0; display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; background: var(--charcoal); }
  .mobile-panel-brand { display: inline-flex; min-width: 0; min-height: 48px; align-items: center; gap: 11px; color: var(--white); line-height: 1; }
  .mobile-panel-brand img { width: auto; max-width: 190px; max-height: 46px; object-fit: contain; }
  .mobile-panel-brand img.brand-icon { width: 46px; height: 46px; }
  .mobile-panel-brand .mobile-panel-brand-fallback { filter: invert(1); opacity: .92; }
  .mobile-panel-brand .brand-mark { background: var(--ivory); color: var(--charcoal); }
  .mobile-panel-brand strong, .mobile-panel-brand small { display: block; }
  .mobile-panel-brand strong { max-width: 230px; overflow: hidden; font-family: var(--serif); font-size: 1.03rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-panel-brand small { margin-top: 6px; color: #aaa79f; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-navigation-close { display: grid; width: 48px; height: 48px; flex: none; place-items: center; border: 1px solid rgb(255 255 255 / 22%); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
  .mobile-navigation-close:hover, .mobile-navigation-close:focus-visible { border-color: #d99a7b; background: rgb(255 255 255 / 6%); transform: rotate(4deg); }
  .mobile-nav-links { border-top: 1px solid rgb(255 255 255 / 16%); }
  .mobile-nav-links > a, .mobile-services-trigger { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: space-between; gap: 20px; border: 0; border-bottom: 1px solid rgb(255 255 255 / 13%); background: transparent; color: var(--white); padding: 13px 3px; font-family: var(--serif); font-size: 1.16rem; text-align: left; cursor: pointer; }
  .mobile-nav-links > a { transition: color .2s ease, padding .2s ease; }
  .mobile-nav-links > a:hover, .mobile-nav-links > a:focus-visible { color: #d99a7b; padding-left: 8px; }
  .mobile-services-trigger svg { color: #d99a7b; transition: transform .25s var(--navigation-ease); }
  .mobile-services.is-open .mobile-services-trigger svg { transform: rotate(180deg); }
  .mobile-services-panel { display: grid; grid-template-rows: 0fr; background: #1d1d19; transition: grid-template-rows .28s var(--navigation-ease); }
  .mobile-services.is-open .mobile-services-panel { grid-template-rows: 1fr; }
  .mobile-services-panel-inner { overflow: hidden; }
  .mobile-services-panel .service-menu-list { display: grid; grid-template-columns: 1fr; gap: 0; padding: 5px 10px 2px; }
  .mobile-services-panel .service-menu-link { border-color: rgb(255 255 255 / 10%); color: var(--white); padding: 12px 4px; }
  .mobile-services-panel .service-menu-link:hover, .mobile-services-panel .service-menu-link:focus-visible { border-color: #d99a7b; background: rgb(255 255 255 / 4%); color: #edb69b; padding-right: 8px; padding-left: 8px; }
  .mobile-services-panel .service-menu-copy strong { font-family: var(--sans); font-size: .82rem; font-weight: 650; }
  .mobile-services-panel .service-menu-copy small { display: none; }
  .mobile-services-panel .service-menu-arrow { opacity: .7; }
  .mobile-services-all { margin: 0 10px 8px; border-color: rgb(255 255 255 / 20%); color: #e7e2d8; padding: 14px 4px 8px; font-size: .67rem; }
  .mobile-panel-actions { margin-top: auto; padding-top: 30px; }
  .mobile-panel-actions > .button { width: 100%; }
  .mobile-panel-contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
  .mobile-panel-contact > a { display: grid; min-height: 58px; align-content: center; border: 1px solid rgb(255 255 255 / 17%); padding: 9px 11px; color: var(--white); }
  .mobile-panel-contact > a:hover, .mobile-panel-contact > a:focus-visible { border-color: #d99a7b; background: rgb(255 255 255 / 5%); }
  .mobile-panel-contact span, .mobile-panel-contact strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-panel-contact span { color: #918e86; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-panel-contact strong { margin-top: 2px; font-size: .72rem; }
  .mobile-navigation::-webkit-scrollbar { width: 7px; }
  .mobile-navigation::-webkit-scrollbar-thumb { background: rgb(255 255 255 / 22%); }
  .hero-grid { gap: 45px; }
  .hero-visual { min-height: 560px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: calc(100% - 28px); }
  .hero-grid, .detail-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-grid { padding-top: 75px; }
  .hero-visual { min-height: 520px; }
  .split-copy, .pro-grid, .faq-layout, .form-heading, .article-layout { grid-template-columns: 1fr; }
  .article-layout { gap: 35px; }
  .article-layout aside { position: static; }
  .service-grid, .project-grid, .project-grid-large, .review-grid, .feature-grid, .method-grid, .team-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid li:nth-child(2) { border-right: 0; }
  .method-grid li:nth-child(3), .method-grid li:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-grid article:nth-child(2) { border-right: 0; }
  .feature-grid article:last-child { border-top: 1px solid var(--line); }
  .service-row { grid-template-columns: 65px 1fr auto; gap: 20px; }
  .form-shell, .simple-form { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .quiz-hero { padding-bottom: 90px; }
  .quiz-hero-inner, .quiz-layout { grid-template-columns: 1fr; }
  .quiz-hero-inner { gap: 45px; }
  .quiz-layout { gap: 45px; }
  .quiz-aside { position: static; display: grid; grid-template-columns: auto 1fr; gap: 10px 22px; align-items: start; border-top: 1px solid var(--line); padding-top: 30px; }
  .quiz-aside-index { grid-row: 1 / 4; margin: 0; }
  .quiz-aside .eyebrow { margin-bottom: 0; }
  .quiz-aside h2 { margin-bottom: 10px; font-size: 2rem; }
  .quiz-aside p, .quiz-aside .text-link { grid-column: 2; }
  .project-story { gap: 45px; }
  .floating-actions { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); }
  .floating-quote { display: grid; }
  .floating-action-tooltip { display: none; }
}

@media (max-width: 580px) {
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .55rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: auto; }
  .hero-grid { gap: 50px; padding-bottom: 0; }
  .hero-visual { width: calc(100% + 28px); min-height: 450px; margin-left: -14px; }
  .material-card { left: 8%; padding: 28px; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 20px; }
  .service-grid, .project-grid, .project-grid-large, .review-grid, .feature-grid, .method-grid, .team-grid, .article-grid, .area-grid, .project-story, .gallery, .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-row { grid-template-columns: 44px 1fr; }
  .service-row .circle-link { display: none; }
  .method-grid li, .method-grid li:not(:first-child), .feature-grid article, .feature-grid article:not(:first-child) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .method-grid li:nth-child(3), .method-grid li:nth-child(4), .feature-grid article:last-child { border-top: 0; }
  .method-grid span, .feature-grid span { margin-bottom: 25px; }
  .project-story { gap: 55px; }
  .project-meta { display: grid; gap: 4px; }
  .contact-card, .contact-card:nth-child(odd), .contact-card:nth-child(-n+2) { min-height: 230px; border: 1px solid var(--line); border-bottom: 0; }
  .contact-card:last-child { border-bottom: 1px solid var(--line); }
  .form-heading { gap: 35px; }
  .form-promise { border-top: 1px solid var(--line); border-left: 0; padding: 22px 0 0; }
  .form-section { padding-top: 20px; }
  .form-shell form { width: calc(100% + 28px); margin-left: -14px; border-right: 0; border-left: 0; padding: 30px 20px; box-shadow: none; }
  .field > div > ul, .field > ul, .form-grid, .form-grid.two { grid-template-columns: 1fr; }
  .quiz-hero { padding: 60px 0 76px; }
  .quiz-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .quiz-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quiz-trust strong { font-size: 1.08rem; }
  .quiz-trust span { font-size: .54rem; }
  .quiz-section { background: linear-gradient(var(--ivory) 0 58px, var(--paper) 58px); }
  .quiz-main { width: calc(100% + 28px); margin-left: -14px; border-right: 0; border-left: 0; box-shadow: none; }
  .quiz-main form { padding: 32px 20px; }
  .quiz-progress { padding: 17px 20px 15px; }
  .quiz-progress-copy { display: grid; gap: 3px; }
  .quiz-save-state { text-align: left; }
  .quiz-step legend { font-size: 2.25rem; }
  .quiz-field > div[id^="id_"], .quiz-field > ul { grid-template-columns: 1fr; }
  .quiz-navigation { align-items: stretch; }
  .quiz-next, .quiz-submit { min-width: 0; flex: 1; }
  .quiz-aside { display: block; }
  .quiz-aside-index { margin-bottom: 28px; }
  .quiz-aside p, .quiz-aside .text-link { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .filters { display: grid; }
  .filters label, .filters select { width: 100%; }
}

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