:root {
  --ink: #111827;
  --primary: #1f2937;
  --primary-2: #111922;
  --gold: #c8a24a;
  --gold-dark: #9f7b27;
  --accent: #2f6b5f;
  --paper: #f8f9fa;
  --surface: #ffffff;
  --muted: #6b7280;
  --line: #d1d5db;
  --line-soft: #e7e8ea;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 24px 60px rgba(17, 24, 39, .12);
  --radius: 3px;
  --control-height: 50px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { min-width: 0; margin: 0; overflow-wrap: break-word; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { max-width: 100%; font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
section[id], .category-block[id] { scroll-margin-top: 150px; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -60px; color: var(--ink); background: var(--gold); padding: 10px 16px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold-dark); font-size: .73rem; line-height: 1.3; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #e1c77e; }
.display, h1, h2, h3 { margin-top: 0; color: var(--primary); font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.75rem, 6vw, 5.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 4.2vw, 4.15rem); }
h3 { margin-bottom: 10px; font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin-top: 0; }
.lede { max-width: 760px; color: #4b5563; font-size: clamp(1.06rem, 1.6vw, 1.25rem); }
.section { padding: clamp(76px, 10vw, 140px) 0; }
.section-sm { padding: 64px 0; }
.section-dark { color: #e8edf0; background: var(--primary); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .lede { color: #c9d0d5; }
.section-gold { background: #c8a24a; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 48px; align-items: end; margin-bottom: 52px; }
.section-head > :last-child { justify-self: end; }
.rule { height: 1px; background: var(--line); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .section-head > *, .split-media > *, .split-content > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.btn { min-height: var(--control-height); display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 1px; padding: 13px 21px; font-size: .76rem; line-height: 1; font-weight: 850; letter-spacing: .09em; text-align: center; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, .filter-btn:focus-visible, .menu-toggle:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 3px; box-shadow: 0 0 0 2px white; }
.btn-primary { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.btn-primary:hover { background: #d7b65f; }
.btn-dark { color: white; background: var(--primary); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-2); border-color: var(--primary-2); }
.btn-outline { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.12); }
.btn-outline:hover { background: white; color: var(--ink); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--primary); }
.btn-ghost:hover { color: white; background: var(--primary); border-color: var(--primary); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: .79rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: '→'; color: var(--gold-dark); font-size: 1.15rem; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }

.site-header { position: sticky; z-index: 100; top: 0; background: white; border-bottom: 1px solid var(--line-soft); box-shadow: 0 4px 18px rgba(17, 24, 39, .05); }
.topbar { color: #d9dee2; background: var(--primary-2); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.topbar .container { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar strong { color: #efd486; }
.topbar a { color: #efd486; }
.nav-shell { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 292px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; aspect-ratio: 1752 / 897; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.main-nav > a:not(.btn) { position: relative; padding: 34px 0; color: #39424e; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 26px; height: 2px; background: var(--gold); transition: right .2s; }
.main-nav > a:not(.btn):hover::after, .main-nav > a.active::after { right: 0; }
.main-nav > .language-switch { padding: 34px 0; color: #7a838d; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > .language-switch.is-disabled { cursor: not-allowed; opacity: .65; }
.main-nav .btn-primary { box-shadow: 0 8px 20px rgba(159, 123, 39, .2); }
.menu-toggle { display: none; width: 46px; height: 44px; border: 1px solid var(--line); background: white; color: var(--primary); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; width: 20px; height: 2px; display: block; margin: 5px auto; background: currentColor; transition: transform .2s; }

.hero { position: relative; min-height: min(810px, calc(100svh - 123px)); display: grid; align-items: end; overflow: hidden; color: white; background: #162027; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,14,19,.9) 0%, rgba(11,17,22,.68) 43%, rgba(11,17,22,.08) 78%), linear-gradient(0deg, rgba(10,15,20,.55), transparent 50%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 75%); padding: clamp(90px, 14vh, 150px) 0 88px; }
.hero h1 { max-width: 720px; color: white; text-wrap: balance; }
.hero .lede { max-width: 620px; color: #e4e9ec; }
.home-page .hero h1 { max-width: 900px; font-size: clamp(3rem, 5.25vw, 5.35rem); }
.hero-subheadline { margin: 0 0 10px; color: #f0f3f4; font-size: clamp(1.1rem, 1.7vw, 1.32rem); font-weight: 650; }
.hero-services { max-width: 760px; margin: 0; color: #d8dee1; font-size: clamp(.88rem, 1.15vw, 1rem); font-weight: 700; letter-spacing: .025em; }
.hero-services span { margin-inline: 5px; color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 42px; color: #dce2e6; font-size: .76rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: '✓'; color: var(--gold); }
.media-note { position: absolute; z-index: 3; right: 22px; bottom: 18px; padding: 5px 8px; color: rgba(255,255,255,.76); background: rgba(0,0,0,.42); font-size: .65rem; }

.trust-strip { background: white; border-bottom: 1px solid var(--line-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.trust-item { min-height: 108px; display: flex; align-items: center; gap: 11px; padding: 22px 16px; border-right: 1px solid var(--line-soft); }
.trust-item:first-child { border-left: 1px solid var(--line-soft); }
.trust-num { color: var(--gold-dark); font-family: var(--serif); font-size: 2.05rem; line-height: 1; }
.trust-icon { width: 24px; height: 24px; flex: 0 0 24px; display: inline-flex; align-items: center; justify-content: center; color: var(--gold-dark); border: 1px solid #d7c38f; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.trust-item strong { display: block; color: var(--primary); font-size: .69rem; line-height: 1.35; letter-spacing: .045em; text-transform: uppercase; }
.trust-item small { color: var(--muted); }

.service-card { min-height: 470px; position: relative; display: flex; align-items: end; overflow: hidden; background: var(--primary); box-shadow: 0 15px 35px rgba(17,24,39,.12); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover img, .service-card:focus-within img { transform: scale(1.035); }
.service-card::after { content: ''; position: absolute; inset: 25% 0 0; background: linear-gradient(transparent, rgba(10,16,21,.93)); }
.service-card-content { position: relative; z-index: 2; width: 100%; padding: 32px; color: white; }
.service-card h3 { color: white; font-size: 2rem; }
.service-card p { color: #d8dee2; }
.service-card .text-link { color: #ecd383; }
.service-card.simple { min-height: 290px; box-shadow: none; }
.service-card.simple .service-card-content { padding: 26px; }
.service-card.simple h3 { font-size: 1.55rem; }
.services-all { display: flex; justify-content: center; margin-top: 36px; }

.why-section { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.why-card { min-height: 310px; padding: 42px 36px; background: var(--paper); }
.why-card > span { display: block; margin-bottom: 55px; color: var(--gold-dark); font-family: var(--serif); font-size: 2rem; }
.why-card h3 { max-width: 270px; font-size: 1.55rem; }
.why-card p { color: var(--muted); }

.projects-home { background: #182530; border-bottom: 1px solid rgba(255,255,255,.13); }
.projects-home .text-link { color: #ecd383; }
.case-study-empty { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 520px; background: #101a22; border: 1px solid rgba(255,255,255,.14); }
.case-study-empty img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.case-study-empty > div { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(34px, 6vw, 72px); }
.case-study-empty h3 { max-width: 500px; color: white; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.case-study-empty p:not(.eyebrow) { max-width: 510px; color: #c5cdd2; }

.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); }
.combo { min-height: 215px; padding: 34px; background: var(--primary); }
.combo-index { display: block; margin-bottom: 35px; color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.combo h3 { font-size: 1.35rem; }
.combo p { color: #bfc7cc; }
.icon-line { width: 42px; height: 2px; margin: 18px 0; background: var(--gold); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: steps; }
.process-step { position: relative; padding: 38px 28px 28px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); counter-increment: steps; }
.process-step:first-child { border-left: 1px solid var(--line); }
.process-step::before { content: '0' counter(steps); display: block; margin-bottom: 45px; color: var(--gold-dark); font-family: var(--serif); font-size: 2rem; }
.process-step p { color: var(--muted); }
.process-home .process-step { min-height: 330px; padding: 44px 34px 34px; }
.process-home .process-step h3 { font-size: 1.6rem; }
.process-home .process-step p { font-size: 1rem; line-height: 1.75; }

.area-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.area-cloud a { padding: 13px 17px; color: #e1e6e9; border: 1px solid rgba(255,255,255,.22); font-size: .76rem; font-weight: 750; letter-spacing: .04em; }
.area-cloud a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.review-empty { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 8vw, 110px); align-items: center; }
.quote-mark { color: #d5b65f; font-family: var(--serif); font-size: 9rem; line-height: .5; opacity: .45; }

.page-hero { padding: clamp(84px, 12vw, 150px) 0 74px; color: white; background: var(--primary); }
.page-hero h1 { max-width: 880px; color: white; font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
.page-hero .lede { color: #d2d8dc; }
.service-hero { min-height: 610px; display: flex; align-items: center; }
.service-hero .container { width: var(--container); }
.service-hero h1 { max-width: 1000px; }
.service-hero .lede { max-width: 850px; }
.service-hero .hero-actions { margin-top: 34px; }
.breadcrumbs { margin-bottom: 50px; color: #aeb8bf; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { color: #e3cb85; }
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 105px); align-items: center; }
.split-media img { width: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.feature-list, .check-list { list-style: none; padding: 0; margin: 28px 0; }
.feature-list li, .check-list li { position: relative; padding: 15px 0 15px 29px; border-bottom: 1px solid var(--line-soft); }
.feature-list li::before, .check-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.overview-grid article { min-height: 310px; padding: 40px 34px; background: white; }
.overview-grid article > span, .benefit-card > span, .material-card > span { display: block; margin-bottom: 48px; color: var(--gold-dark); font-family: var(--serif); font-size: 1.75rem; }
.overview-grid h3 { font-size: 1.55rem; }
.overview-grid p { color: var(--muted); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.benefit-card { min-height: 350px; padding: 38px 30px; background: var(--primary); }
.benefit-card > span { color: var(--gold); }
.benefit-card h3 { color: white; font-size: 1.45rem; }
.benefit-card p { color: #c5cdd2; }

.service-process { grid-template-columns: repeat(5, 1fr); }
.service-process .process-step { min-height: 390px; padding: 42px 25px 30px; }
.service-process .process-step h3 { font-size: 1.4rem; }
.service-process .process-step p { line-height: 1.75; }

.materials-section { background: white; }
.materials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.material-card { min-height: 340px; padding: 34px 28px; background: var(--paper); }
.material-card h3 { font-size: 1.3rem; }
.material-card p { color: var(--muted); font-size: .92rem; }

.split-content { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.consideration-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.consideration-list li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.consideration-list span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.consideration-list p { margin: 0; color: #d1d7db; }

.gallery-section { background: white; }
.service-gallery-empty { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; min-height: 530px; overflow: hidden; color: white; background: #111b23; box-shadow: var(--shadow); }
.service-gallery-empty > img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.service-gallery-empty > div { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(34px, 5vw, 65px); }
.service-gallery-empty h3 { color: white; font-size: clamp(1.7rem, 2.8vw, 2.5rem); }
.service-gallery-empty p:not(.eyebrow) { color: #c7cfd4; }
.service-gallery-empty > small { position: absolute; left: 14px; bottom: 14px; padding: 5px 8px; color: rgba(255,255,255,.84); background: rgba(0,0,0,.62); font-size: .65rem; }
.service-area-section .split-content { align-items: center; }
.category-block { margin-top: 70px; }
.category-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.category-heading small { color: var(--muted); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.service-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1px; background: var(--line); }
.service-index-item { min-height: 185px; padding: 28px; background: white; }
.service-index-item .number { color: var(--gold-dark); font-size: .7rem; font-weight: 850; letter-spacing: .08em; }
.service-index-item h3 { margin-top: 34px; font-size: 1.35rem; }
.service-index-item p { color: var(--muted); font-size: .92rem; }
.service-index-item:hover { background: #f2f0e9; }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0; }
.pill { display: inline-flex; padding: 7px 11px; color: #48535c; background: #edf0f1; font-size: .69rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.faq { max-width: 900px; margin: 50px auto 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; cursor: pointer; list-style: none; padding: 24px 50px 24px 0; color: var(--primary); font-family: var(--serif); font-size: 1.25rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 8px; top: 18px; color: var(--gold-dark); font-family: var(--sans); font-size: 1.7rem; }
.faq details[open] summary::after { content: '−'; }
.faq details p { max-width: 740px; padding: 0 0 25px; color: var(--muted); }

.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; }
.filter-btn { min-height: 44px; padding: 9px 14px; border: 1px solid var(--line); color: #4b5563; background: white; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s; }
.filter-btn.is-active { color: white; background: var(--primary); border-color: var(--primary); }
.editorial-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 320px); gap: 16px; }
.editorial-item { position: relative; overflow: hidden; background: var(--primary); }
.editorial-item:first-child { grid-row: 1 / 3; }
.editorial-item img { width: 100%; height: 100%; object-fit: cover; }
.editorial-item span { position: absolute; left: 16px; bottom: 16px; padding: 6px 9px; color: white; background: rgba(17,24,39,.78); font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; }
.projects-index-hero { min-height: 620px; display: flex; align-items: center; }
.projects-index-hero .container { width: var(--container); }
.projects-index-hero h1 { max-width: 950px; }
.projects-index-hero .btn { margin-top: 22px; }
.project-standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.project-standard-grid article { min-height: 310px; padding: 38px 30px; background: white; }
.project-standard-grid span, .project-overview-grid article > span, .project-highlight-grid article > span { display: block; margin-bottom: 48px; color: var(--gold-dark); font-family: var(--serif); font-size: 1.75rem; }
.project-standard-grid h3 { font-size: 1.45rem; }
.project-standard-grid p { color: var(--muted); }
.projects-portfolio .gallery-toolbar { margin-bottom: 30px; }
.projects-portfolio .filter-btn { color: #dce2e6; background: transparent; border-color: rgba(255,255,255,.28); }
.projects-portfolio .filter-btn:hover, .projects-portfolio .filter-btn.is-active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.project-archive-empty { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 560px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #111b23; }
.project-archive-empty figure { position: relative; margin: 0; }
.project-archive-empty figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(17,27,35,.48)); }
.project-archive-empty figure img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.project-archive-empty figcaption { position: absolute; z-index: 2; left: 14px; bottom: 14px; padding: 5px 8px; color: rgba(255,255,255,.84); background: rgba(0,0,0,.65); font-size: .65rem; }
.project-archive-empty > div { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(36px, 5vw, 68px); }
.project-archive-empty h3 { max-width: 520px; color: white; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.project-archive-empty p:not(.eyebrow) { max-width: 520px; color: #c6ced3; }
.project-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card { background: white; box-shadow: 0 16px 35px rgba(8,14,19,.15); }
.project-card[hidden] { display: none; }
.project-card-media { position: relative; min-height: 390px; display: block; overflow: hidden; background: var(--primary); }
.project-card-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .5s; }
.project-card-media:hover img, .project-card-media:focus-visible img { transform: scale(1.025); }
.project-card-media > span { position: absolute; left: 18px; bottom: 18px; padding: 7px 10px; color: white; background: rgba(17,24,39,.82); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.project-card-body { padding: 32px; }
.project-card-body h2 { font-size: 2rem; }
.project-card-body > p:not(.eyebrow) { color: var(--muted); }
.project-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .75rem; font-weight: 750; text-transform: uppercase; }

.project-detail-hero { padding-top: 90px; color: white; background: var(--primary); }
.project-detail-hero h1 { max-width: 980px; color: white; }
.project-detail-heading { padding-bottom: 70px; }
.project-service-line { color: #d3dade; font-weight: 750; }
.project-service-line span { margin-inline: 8px; color: var(--gold); }
.project-detail-hero > figure { position: relative; width: min(1380px, calc(100vw - 40px)); min-height: 680px; margin: 0 auto; transform: translateY(64px); box-shadow: var(--shadow); }
.project-detail-hero > figure img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.project-detail-hero > figure figcaption { position: absolute; right: 16px; bottom: 16px; padding: 6px 10px; color: white; background: rgba(17,24,39,.78); font-size: .7rem; }
.project-overview { padding-top: 190px; }
.project-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.project-overview-grid article { min-height: 320px; padding: 38px 34px; background: white; }
.project-overview-grid h3 { font-size: 1.5rem; }
.project-overview-grid p { color: var(--muted); }
.project-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.project-service-grid > a { min-height: 260px; padding: 30px; background: var(--primary); }
.project-service-grid > a > span:first-child { display: block; margin-bottom: 54px; color: var(--gold); font-family: var(--serif); font-size: 1.55rem; }
.project-service-grid h3 { color: white; }
.project-service-grid .text-link { color: #e5c96f; }
.project-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.project-highlight-grid article { min-height: 310px; padding: 35px 30px; background: var(--primary); }
.project-highlight-grid article > span { color: var(--gold); }
.project-highlight-grid h3 { color: white; }
.project-highlight-grid p { color: #c4ccd1; }
.before-after-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.before-after-grid figure { position: relative; min-height: 540px; margin: 0; overflow: hidden; background: var(--primary); }
.before-after-grid img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.before-after-grid figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; color: white; background: rgba(17,24,39,.82); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.before-after-empty, .related-projects-empty { padding: clamp(36px, 6vw, 68px); background: white; border-left: 4px solid var(--gold); }
.before-after-empty h3 { max-width: 760px; font-size: clamp(1.7rem, 3vw, 2.55rem); }
.related-projects-empty p { margin: 0; color: var(--muted); }
.areas-index-hero, .area-hero { min-height: 620px; display: flex; align-items: center; }
.areas-index-hero .container, .area-hero .container { width: var(--container); }
.areas-index-hero h1, .area-hero h1 { max-width: 1020px; }
.areas-index-hero .btn { margin-top: 24px; }
.area-hero .lede { max-width: 900px; }
.area-editorial-media { position: relative; margin: 0; }
.area-editorial-media img { width: 100%; min-height: 570px; object-fit: cover; }
.area-editorial-media figcaption { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; color: white; background: rgba(17,24,39,.78); font-size: .65rem; }
.area-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 30px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.area-service-grid > a { min-height: 315px; padding: 34px 30px; background: var(--primary); }
.area-service-grid > a > span:first-child, .nearby-area-grid > a > span:first-child { display: block; margin-bottom: 46px; color: var(--gold); font-family: var(--serif); font-size: 1.65rem; }
.area-service-grid h3, .nearby-area-grid h3 { color: white; }
.area-service-grid p, .nearby-area-grid p { color: #c5cdd2; }
.area-service-grid .text-link, .nearby-area-grid .text-link { color: #e6ca76; }
.area-all-services { margin-top: 6px; }
.area-projects { background: white; }
.area-projects-empty { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; overflow: hidden; color: white; background: #111b23; box-shadow: var(--shadow); }
.area-projects-empty figure { position: relative; margin: 0; }
.area-projects-empty figure img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.area-projects-empty figcaption { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; color: white; background: rgba(17,24,39,.8); font-size: .65rem; }
.area-projects-empty > div { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(36px, 5vw, 66px); }
.area-projects-empty h3 { max-width: 500px; color: white; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.area-projects-empty p:not(.eyebrow) { color: #c5cdd2; }
.area-consideration-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.area-consideration-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.area-consideration-list span { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.area-consideration-list p { margin: 0; color: #d0d7db; }
.nearby-area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 30px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.nearby-area-grid > a { min-height: 350px; padding: 32px 27px; background: var(--primary); }
.nearby-area-grid h3 { font-size: 1.45rem; }
.nearby-area-grid p { font-size: .9rem; }
.notice-card { padding: clamp(30px, 5vw, 58px); background: white; border-left: 4px solid var(--gold); }

.form-shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-aside { padding: clamp(30px, 5vw, 58px); color: white; background: var(--primary); }
.form-aside h2, .form-aside h3 { color: white; }
.form-aside p { color: #cbd2d6; }
.estimate-form { padding: clamp(30px, 5vw, 58px); background: white; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.field.full { grid-column: 1 / -1; }
.field label, .fieldset-title { display: block; margin-bottom: 7px; color: #39424c; font-size: .73rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 51px; border: 1px solid #bcc3c9; border-radius: 0; padding: 12px 14px; color: var(--ink); background: white; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); outline: 2px solid rgba(200,162,74,.22); }
.field small { display: block; margin-top: 6px; color: var(--muted); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }
.checkbox { display: flex; align-items: flex-start; gap: 9px; color: #4b5563; font-size: .9rem; }
.checkbox input { margin-top: 5px; accent-color: var(--accent); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.form-status { min-height: 24px; color: var(--accent); font-weight: 750; }
.conversion-hero { min-height: 640px; display: flex; align-items: center; }
.conversion-hero .container { width: var(--container); }
.conversion-hero h1 { max-width: 980px; }
.conversion-hero .lede { max-width: 860px; }
.lead-confidence { padding: 66px 0; background: white; border-bottom: 1px solid var(--line-soft); }
.lead-confidence > .container > h2 { max-width: 820px; margin-bottom: 38px; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.lead-confidence-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.lead-confidence-grid article { min-height: 235px; padding: 27px 24px; background: var(--paper); }
.lead-confidence-grid article > span { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 35px; color: var(--gold-dark); border: 1px solid #d7c38f; border-radius: 50%; font-weight: 900; }
.lead-confidence-grid h3 { font-family: var(--sans); font-size: .78rem; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.lead-confidence-grid p { color: var(--muted); font-size: .88rem; }
.lead-capture-section { background: #eef0f1; }
.premium-form-shell { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.lead-process-aside { position: sticky; top: 150px; padding: clamp(38px, 5vw, 60px); color: white; background: var(--primary); }
.lead-process-aside h2, .lead-process-aside h3 { color: white; }
.lead-process-aside > div > p:not(.eyebrow), .lead-process-list p, .response-note p:not(.eyebrow) { color: #c9d0d5; }
.lead-process-list { list-style: none; padding: 0; margin: 42px 0; border-top: 1px solid rgba(255,255,255,.18); }
.lead-process-list li { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.lead-process-list li > span { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.lead-process-list h3 { margin-bottom: 6px; font-size: 1.18rem; }
.lead-process-list p { margin: 0; font-size: .9rem; }
.response-note { padding: 24px; background: rgba(255,255,255,.07); border-left: 3px solid var(--gold); }
.response-note p:last-child { margin: 0; }
.premium-form-shell .premium-lead-form { padding: 0; }
.premium-lead-form [hidden] { display: none !important; }
.form-intro, .form-section, .form-submit-panel, .form-confirmation { padding: clamp(34px, 5vw, 60px); }
.form-intro { background: white; }
.form-intro h2 { max-width: 760px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.form-intro p:last-child { max-width: 760px; color: var(--muted); }
.form-section { background: white; border-top: 1px solid var(--line); }
.form-section-heading { display: grid; grid-template-columns: 54px 1fr; gap: 18px; margin-bottom: 32px; }
.form-section-heading > span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.65rem; }
.form-section-heading h3 { margin-bottom: 6px; font-size: 1.55rem; }
.form-section-heading p { margin: 0; color: var(--muted); }
.choice-fieldset { border: 0; padding: 0; margin: 0; }
.field-help { margin: -2px 0 12px; color: var(--muted); font-size: .86rem; }
.choice-grid { display: grid; gap: 10px; }
.choice-grid-2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
.choice-card { position: relative; min-height: 55px; display: flex; align-items: center; gap: 10px; padding: 14px 15px; color: #3e4852; background: var(--paper); border: 1px solid #bdc4ca; cursor: pointer; }
.choice-card:has(input:checked) { color: var(--primary); background: #f4edda; border-color: var(--gold-dark); }
.choice-card input { width: 18px; height: 18px; flex: 0 0 18px; margin: 0; accent-color: var(--accent); }
.choice-card span { font-size: .85rem; font-weight: 750; }
.choice-card:has(input:focus-visible) { outline: 3px solid var(--gold-dark); outline-offset: 2px; }
.premium-lead-form input[readonly] { color: #525d67; background: #edf0f1; }
.premium-lead-form [aria-invalid="true"] { border-color: #a33a35; outline: 2px solid rgba(163,58,53,.14); }
.upload-field { padding: 24px; background: var(--paper); border: 1px dashed #9ba4ab; }
.upload-field input { width: 100%; padding: 16px; overflow: hidden; background: white; }
.consent-card { min-height: 74px; display: flex; align-items: flex-start; gap: 13px; padding: 20px; background: #f5f1e5; border: 1px solid #d8c898; cursor: pointer; }
.consent-card input { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 3px; accent-color: var(--accent); }
.consent-card span { color: #36404a; }
.form-submit-panel { display: grid; grid-template-columns: 1fr auto; gap: 22px 35px; align-items: center; color: white; background: var(--primary); }
.form-submit-panel > div > p:not(.eyebrow) { max-width: 620px; margin: 0; color: #cbd2d6; }
.form-submit-panel .form-status { grid-column: 1 / -1; margin: 0; color: #dbe5e2; }
.form-status.is-error { color: #ffcbc7; }
.form-status.is-working { color: #efd486; }
.premium-lead-form button[disabled] { cursor: wait; opacity: .72; }
.form-confirmation { min-height: 780px; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; background: white; }
.confirmation-mark { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 30px; color: white; background: var(--accent); border-radius: 50%; font-size: 1.6rem; font-weight: 900; }
.form-confirmation h2 { max-width: 760px; }
.form-confirmation > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.confirmation-next { width: 100%; max-width: 720px; margin: 26px 0; padding: 28px; background: var(--paper); border-left: 4px solid var(--gold); }
.confirmation-next h3 { font-size: 1.35rem; }
.confirmation-next ol { margin-bottom: 0; padding-left: 22px; }
.confirmation-next li { margin: 10px 0; color: #4c5660; }
.contact-details-section { background: white; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-channel-grid article { min-height: 300px; padding: 38px 32px; background: var(--paper); }
.contact-channel-grid article > span { display: block; margin-bottom: 48px; color: var(--gold-dark); font-family: var(--serif); font-size: 1.7rem; }
.contact-channel-grid h3 { font-size: 1.5rem; }
.contact-channel-grid a { display: inline-block; color: var(--accent); font-weight: 800; }
.contact-channel-grid p { color: var(--muted); }
.contact-channel-grid p strong { color: var(--primary); }

.footer-cta { color: white; background: linear-gradient(105deg, #202b36 0 66%, #283e3a 66%); }
.footer-cta .container { min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-cta h2 { max-width: 720px; margin: 0; color: white; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer { color: #b6c0c6; background: #10171e; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); align-items: start; gap: 60px; padding: 75px 0 60px; }
.footer-main > * { min-width: 0; }
.footer-brand img { width: min(275px, 100%); height: auto !important; aspect-ratio: 1774 / 887; margin-bottom: 22px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 390px; }
.footer-facts { display: grid; gap: 7px; margin-top: 20px; font-size: .84rem; }
.footer-facts strong { color: white; }
.footer-facts a { color: #e4c873; }
.footer-col h3 { color: white; font-family: var(--sans); font-size: .73rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.portfolio-media-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.portfolio-media-item { grid-column: span 4; min-width: 0; padding: 0; overflow: hidden; color: white; text-align: left; background: var(--primary); border: 1px solid var(--line); border-radius: 2px; cursor: zoom-in; }
.portfolio-media-item:nth-child(5n + 1), .portfolio-media-item:nth-child(5n + 4) { grid-column: span 7; }
.portfolio-media-item:nth-child(5n + 2), .portfolio-media-item:nth-child(5n + 5) { grid-column: span 5; }
.portfolio-media-item img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; transition: transform .35s ease; }
.portfolio-media-item span { display: block; padding: 12px 15px; color: #e4e8eb; font-size: .82rem; }
.portfolio-media-item:hover img, .portfolio-media-item:focus-visible img { transform: scale(1.018); }
.portfolio-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.portfolio-video-card { min-width: 0; padding: 0 0 18px; overflow: hidden; color: white; text-align: left; background: #18232d; border: 1px solid rgba(255,255,255,.18); border-radius: 2px; cursor: pointer; }
.portfolio-video-thumb { position: relative; display: block; margin-bottom: 17px; overflow: hidden; }
.portfolio-video-thumb img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; }
.portfolio-video-card strong { display: block; padding: 0 18px; }
.video-play { position: absolute; inset: 50% auto auto 50%; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(15,23,30,.78); transform: translate(-50%, -50%); }
.video-play::after { width: 0; height: 0; margin-left: 4px; content: ''; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid white; }
.portfolio-carousel { position: relative; color: white; background: var(--primary); box-shadow: var(--shadow); }
.portfolio-carousel-track { min-height: 640px; }
.portfolio-slide { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.portfolio-slide[hidden] { display: none; }
.portfolio-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portfolio-slide::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(9,15,20,.88), rgba(9,15,20,.08) 80%), linear-gradient(0deg, rgba(9,15,20,.72), transparent 65%); }
.portfolio-slide-content { position: relative; z-index: 1; width: min(680px, 88%); padding: clamp(38px, 6vw, 76px); }
.portfolio-slide-content h2 { color: white; }
.portfolio-slide-content > p:not(.eyebrow) { color: #e0e5e8; }
.portfolio-carousel-controls { position: absolute; z-index: 2; right: clamp(22px, 4vw, 50px); bottom: clamp(22px, 4vw, 46px); display: flex; align-items: center; gap: 14px; padding: 7px; background: rgba(11,18,24,.84); }
.portfolio-carousel-controls button { min-width: 48px; min-height: 44px; padding: 0 14px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.38); cursor: pointer; }
.portfolio-carousel-controls span { min-width: 52px; text-align: center; font-size: .8rem; font-weight: 800; }
.media-dialog { width: min(1100px, calc(100% - 36px)); max-height: calc(100vh - 36px); padding: 54px 20px 20px; overflow: auto; color: white; background: #0d151b; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.media-dialog::backdrop { background: rgba(5,9,12,.82); backdrop-filter: blur(3px); }
.media-dialog figure { margin: 0; }
.media-dialog-stage { min-height: 80px; display: grid; place-items: center; }
.media-dialog-stage img, .media-dialog-stage video { width: auto; max-width: 100%; max-height: calc(100vh - 150px); display: block; object-fit: contain; }
.media-dialog-stage video { width: 100%; aspect-ratio: 16 / 9; background: black; }
.media-dialog figcaption { padding-top: 13px; color: #d3d9dd; font-size: .86rem; }
.media-dialog-close { position: absolute; top: 10px; right: 10px; min-width: 70px; min-height: 36px; padding: 6px 12px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.4); cursor: pointer; }

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-shell { min-height: 75px; }
  .brand { width: min(230px, 65vw); }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 75px 0 0; z-index: 100; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 30px 24px 110px; overflow-y: auto; background: white; }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn) { padding: 17px 4px; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
  .main-nav > .language-switch { padding: 17px 4px; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
  .main-nav > a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 20px; }
  .hero { min-height: 720px; }
  .hero-content { width: min(680px, 92%); }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .section-head > :last-child { justify-self: start; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; }
  .why-card > span { margin-bottom: 24px; }
  .case-study-empty { grid-template-columns: 1fr; }
  .case-study-empty img { min-height: 420px; }
  .split-media { grid-template-columns: 1fr; }
  .split-content { grid-template-columns: 1fr; }
  .split-media img { min-height: 420px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-grid article { min-height: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process { grid-template-columns: repeat(2, 1fr); }
  .service-process .process-step:last-child { grid-column: 1 / -1; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .service-gallery-empty { grid-template-columns: 1fr; }
  .service-gallery-empty > img { min-height: 420px; }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); }
  .project-standard-grid, .project-service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .project-archive-empty { grid-template-columns: 1fr; }
  .project-archive-empty figure img { min-height: 440px; }
  .project-card-grid { grid-template-columns: 1fr; }
  .project-detail-hero > figure, .project-detail-hero > figure img { min-height: 520px; }
  .area-service-grid { grid-template-columns: repeat(2, 1fr); }
  .nearby-area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-projects-empty { grid-template-columns: 1fr; }
  .area-projects-empty figure img { min-height: 420px; }
  .form-shell { grid-template-columns: 1fr; }
  .lead-confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-confidence-grid article:last-child { grid-column: 1 / -1; }
  .premium-form-shell { grid-template-columns: 1fr; }
  .lead-process-aside { position: static; }
  .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-channel-grid article { min-height: auto; }
  .contact-channel-grid article > span { margin-bottom: 24px; }
  .portfolio-media-item, .portfolio-media-item:nth-child(n) { grid-column: span 6; }
  .portfolio-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  body { padding-bottom: 66px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.15rem); }
  .section { padding: 78px 0; }
  .hero { min-height: 700px; }
  .service-hero { min-height: 620px; padding: 76px 0 70px; }
  .service-hero .breadcrumbs { margin-bottom: 38px; }
  .service-hero .hero-actions .btn { flex: 1 1 100%; }
  .hero::after { background: linear-gradient(90deg, rgba(9,14,19,.88), rgba(9,14,19,.34)), linear-gradient(0deg, rgba(9,14,19,.75), transparent 70%); }
  .hero-media img { object-position: 62% center; }
  .hero-content { width: 100%; padding-bottom: 58px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 6px); min-width: 0; padding-inline: 12px; }
  .hero-trust { gap: 10px 18px; }
  .media-note { display: none; }
  .grid-2, .grid-3, .grid-4, .combo-grid, .process-grid, .service-index-grid, .editorial-grid { grid-template-columns: 1fr; }
  .benefit-grid, .materials-grid, .service-process { grid-template-columns: 1fr; }
  .service-process .process-step:last-child { grid-column: auto; }
  .benefit-card, .material-card { min-height: auto; }
  .overview-grid article > span, .benefit-card > span, .material-card > span { margin-bottom: 24px; }
  .service-gallery-empty > img { min-height: 300px; }
  .service-gallery-empty > small { position: static; padding: 10px 16px; background: #0d151b; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 88px; padding: 17px; border-left: 1px solid var(--line-soft); }
  .service-card { min-height: 410px; }
  .combo { min-height: 180px; }
  .process-step { border-left: 1px solid var(--line); }
  .review-empty { grid-template-columns: 1fr; gap: 20px; }
  .quote-mark { font-size: 7rem; }
  .editorial-grid { grid-template-rows: repeat(3, 270px); }
  .editorial-item:first-child { grid-row: auto; }
  .projects-index-hero { min-height: 600px; }
  .project-standard-grid, .project-service-grid, .project-highlight-grid, .project-overview-grid, .before-after-grid { grid-template-columns: 1fr; }
  .project-standard-grid article, .project-service-grid > a, .project-highlight-grid article, .project-overview-grid article { min-height: auto; }
  .project-standard-grid span, .project-overview-grid article > span, .project-highlight-grid article > span { margin-bottom: 24px; }
  .project-archive-empty { min-height: auto; }
  .project-archive-empty figure img { min-height: 300px; }
  .project-archive-empty figure::after { background: linear-gradient(0deg, rgba(17,27,35,.35), transparent 60%); }
  .project-card-media, .project-card-media img { min-height: 300px; }
  .project-card-meta { align-items: flex-start; flex-direction: column; }
  .portfolio-media-grid, .portfolio-video-grid { grid-template-columns: 1fr; }
  .portfolio-media-item, .portfolio-media-item:nth-child(n) { grid-column: auto; }
  .portfolio-carousel-track, .portfolio-slide { min-height: 560px; }
  .portfolio-slide-content { width: 100%; padding: 38px 22px 112px; }
  .portfolio-carousel-controls { right: 22px; bottom: 22px; left: 22px; justify-content: space-between; }
  .media-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); padding: 50px 10px 10px; }
  .project-detail-hero { padding-top: 72px; }
  .project-detail-heading { padding-bottom: 50px; }
  .project-detail-hero > figure { width: 100%; transform: translateY(40px); }
  .project-detail-hero > figure, .project-detail-hero > figure img { min-height: 360px; }
  .project-overview { padding-top: 120px; }
  .before-after-grid figure, .before-after-grid img { min-height: 320px; }
  .areas-index-hero, .area-hero { min-height: 610px; padding: 76px 0 70px; }
  .area-hero .hero-actions .btn { flex: 1 1 100%; }
  .area-editorial-media img { min-height: 390px; }
  .area-service-grid, .nearby-area-grid { grid-template-columns: 1fr; }
  .area-service-grid > a, .nearby-area-grid > a { min-height: auto; }
  .area-service-grid > a > span:first-child, .nearby-area-grid > a > span:first-child { margin-bottom: 24px; }
  .area-projects-empty { min-height: auto; }
  .area-projects-empty figure img { min-height: 300px; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .conversion-hero { min-height: 630px; padding: 76px 0 70px; }
  .conversion-hero .hero-actions .btn { flex: 1 1 100%; }
  .lead-confidence { padding: 58px 0; }
  .lead-confidence-grid { grid-template-columns: 1fr; }
  .lead-confidence-grid article, .lead-confidence-grid article:last-child { min-height: auto; grid-column: auto; }
  .lead-confidence-grid article > span { margin-bottom: 22px; }
  .form-intro, .form-section, .form-submit-panel, .form-confirmation { padding: 30px 22px; }
  .form-section-heading { grid-template-columns: 40px 1fr; gap: 10px; }
  .choice-grid-2, .choice-grid-3 { grid-template-columns: 1fr; }
  .choice-card { min-height: 58px; }
  .form-submit-panel { grid-template-columns: 1fr; }
  .form-submit-panel .btn { width: 100%; min-height: 56px; }
  .form-submit-panel .form-status { grid-column: auto; }
  .form-confirmation { min-height: 650px; }
  .footer-cta { background: var(--primary); }
  .footer-cta .container { min-height: 360px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1 1 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-col a, .footer-bottom-links a { min-height: 44px; display: flex; align-items: center; margin-block: 0; }
  section[id], .category-block[id] { scroll-margin-top: 92px; }
  .mobile-actions { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; height: 66px; display: grid; grid-template-columns: 1fr 1fr 1.2fr; background: white; border-top: 1px solid var(--line); box-shadow: 0 -8px 20px rgba(17,24,39,.1); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; color: var(--primary); border-right: 1px solid var(--line); font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-actions a:last-child { color: var(--ink); background: var(--gold); border: 0; }
}

@media (max-width: 430px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand, .footer-main .footer-col:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .service-card:hover img, .service-card:focus-within img, .project-card-media:hover img, .project-card-media:focus-visible img, .portfolio-media-item:hover img, .portfolio-media-item:focus-visible img { transform: none; }
}

@media (forced-colors: active) {
  .btn, .filter-btn, .menu-toggle, .choice-card, .consent-card, .portfolio-media-item, .portfolio-video-card, .media-dialog-close { border: 1px solid ButtonText; }
  :focus-visible { outline-color: Highlight; }
}

@media print {
  .topbar, .main-nav, .menu-toggle, .mobile-actions, .footer-cta { display: none !important; }
  body { padding: 0; background: white; }
  .site-header { position: static; }
}
