:root {
    --blue: #0d3e8a;
    --blue-dark: #082956;
    --blue-deep: #061d3f;
    --blue-soft: #eaf1fb;
    --orange: #f68b1f;
    --orange-dark: #d96f07;
    --ink: #121b27;
    --muted: #4f5c6c;
    --line: #d9dee5;
    --paper: #ffffff;
    --sand: #f5f2eb;
    --canvas: #fbfaf7;
    --success: #176b45;
    --error: #a32626;
    --shadow: 0 26px 60px rgba(6, 29, 63, .12);
    --shadow-small: 0 12px 32px rgba(6, 29, 63, .09);
    --radius: 4px;
    --container: 1220px;
    --header-height: 86px;
    --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; overflow-x: clip; background: var(--canvas); color: var(--ink); font-family: var(--font); font-size: 16px; font-weight: 400; line-height: 1.65; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4, ul, ol, figure, blockquote { margin-top: 0; }
h1, h2, h3 { color: var(--blue-deep); line-height: 1.04; letter-spacing: -.045em; text-wrap: balance; }
h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 6vw, 5.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 4.2vw, 4.15rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--muted); }
em { color: var(--orange); font-style: normal; }
::selection { background: var(--orange); color: var(--blue-deep); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding-top: clamp(64px, 7vw, 96px); }
.section--blue { background: var(--blue); color: white; }
.section--sand { background: var(--sand); }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 12px 18px; transform: translateY(-150%); background: white; color: var(--blue); box-shadow: var(--shadow-small); font-weight: 800; }
.skip-link:focus { transform: none; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .12em; line-height: 1.25; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; background: var(--orange); content: ""; }
.eyebrow--light { color: white; }
.button { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 22px; border: 2px solid var(--orange); border-radius: 2px; background: var(--orange); color: var(--blue-deep); font-size: 15px; font-weight: 700; line-height: 1.2; letter-spacing: .01em; text-align: center; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.button::before { position: absolute; z-index: -1; inset: 0; transform: translateX(-105%) skewX(-18deg); background: rgba(255,255,255,.2); content: ""; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.button:hover::before { transform: translateX(105%) skewX(-18deg); }
.button:hover { transform: translateY(-2px); border-color: var(--orange-dark); background: var(--orange-dark); color: white; box-shadow: 0 10px 24px rgba(246, 139, 31, .25); }
.button--small { min-height: 42px; padding: 10px 17px; font-size: 13px; }
.button--ghost { border-color: var(--blue); background: transparent; color: var(--blue); }
.button--ghost:hover { border-color: var(--blue); background: var(--blue); color: white; box-shadow: none; }
.button--light { border-color: white; background: white; color: var(--blue); }
.button--light:hover { border-color: var(--orange); background: var(--orange); color: var(--blue-deep); }
.button--outline-light { border-color: rgba(255,255,255,.68); background: transparent; color: white; }
.button--outline-light:hover { border-color: white; background: white; color: var(--blue); box-shadow: none; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; line-height: 1.3; }
.text-link span { color: var(--orange); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.topbar { background: var(--blue-deep); color: white; font-size: 13px; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; color: rgba(255,255,255,.72); }
.topbar__links { display: flex; gap: 24px; font-weight: 600; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; }
.ui-icon { width: 16px; height: 16px; flex: 0 0 16px; }
.topbar__links a:hover { color: var(--orange); }
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); border-bottom: 1px solid rgba(13,62,138,.1); background: rgba(251,250,247,.985); transition: box-shadow .2s ease, height .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(6,29,63,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { flex: 0 1 250px; max-width: 250px; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 29px); }
.nav-page-icon, .mobile-nav-card { display: none; }
.nav-link { position: relative; padding: 13px 0; color: #283445; font-size: 14px; font-weight: 600; }
.nav-link::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--orange); content: ""; transition: transform .25s ease; }
.nav-link:hover::after, .nav-link.is-active::after, .nav-services.is-active > .nav-link::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active, .nav-services.is-active > .nav-link { color: var(--blue); }
.nav-services { position: relative; display: flex; align-items: center; }
.nav-services::before { position: absolute; top: 100%; right: -12px; left: -12px; height: 34px; content: ""; }
.nav-services__trigger { display: inline-flex; align-items: center; gap: 3px; }
.nav-chevron { width: 14px; height: 14px; transition: transform .25s ease; }
.nav-services:hover .nav-chevron, .nav-services:focus-within .nav-chevron { transform: rotate(180deg); }
.services-menu { position: fixed; z-index: 140; top: calc(var(--header-height) + 34px); left: 50%; width: min(calc(100vw - 40px), 1040px); padding: 0 24px 24px; visibility: hidden; transform: translate(-50%, 12px); border-top: 3px solid var(--orange); background: var(--paper); box-shadow: 0 28px 70px rgba(6,29,63,.2); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.site-header.is-scrolled .services-menu { top: var(--header-height); }
.nav-services:hover .services-menu, .nav-services:focus-within .services-menu, .nav-services.is-open .services-menu { visibility: visible; transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.services-menu__head { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.services-menu__head > div { display: flex; align-items: baseline; gap: 15px; }
.services-menu__head span { color: var(--orange-dark); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.services-menu__head strong { color: var(--blue-deep); font-size: 15px; }
.services-menu__head > a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 700; }
.services-menu__head .ui-icon { width: 15px; height: 15px; }
.services-menu__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.services-menu__item { min-width: 0; min-height: 68px; padding: 11px 14px; display: grid; grid-template-columns: 40px minmax(0, 1fr) 18px; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); transition: background .2s ease, color .2s ease; }
.services-menu__item:nth-child(odd) { border-right: 1px solid var(--line); }
.services-menu__item:hover { background: var(--blue-soft); }
.services-menu__icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #c8d5e8; color: var(--blue); transition: background .2s ease, color .2s ease, transform .2s ease; }
.services-menu__icon .service-icon { width: 21px; height: 21px; }
.services-menu__item:hover .services-menu__icon { transform: rotate(-3deg); background: var(--blue); color: white; }
.services-menu__copy { min-width: 0; display: flex; flex-direction: column; }
.services-menu__copy strong { overflow: hidden; color: var(--blue-deep); font-size: 14px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.services-menu__copy small { overflow: hidden; color: #566374; font-size: 13px; font-weight: 600; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.services-menu__copy small b { color: var(--orange-dark); white-space: nowrap; }
.services-menu__arrow { color: var(--orange-dark); font-size: 15px; }
.header-project-link { min-height: 52px; padding: 7px 14px 7px 12px; display: inline-flex; align-items: center; gap: 10px; border-left: 3px solid var(--orange); background: var(--blue-deep); color: white; box-shadow: 0 8px 20px rgba(6,29,63,.12); transition: transform .2s ease, background .2s ease; }
.header-project-link:hover { transform: translateY(-2px); background: var(--blue); }
.header-project-link > .ui-icon { width: 22px; height: 22px; color: var(--orange); }
.header-project-link > span { display: flex; flex-direction: column; line-height: 1.15; }
.header-project-link small { color: rgba(255,255,255,.7); font-size: 13px; }
.header-project-link strong { color: white; font-size: 13px; }
.scroll-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--orange); will-change: transform; }
.menu-toggle { display: none; min-width: 74px; min-height: 44px; align-items: center; justify-content: space-between; gap: 10px; border: 0; background: transparent; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.menu-toggle__icon { width: 24px; display: grid; gap: 6px; }
.menu-toggle__icon i { height: 2px; display: block; background: var(--blue); transition: transform .2s ease; }

.hero { position: relative; overflow: hidden; padding: clamp(54px, 6vw, 88px) 0 clamp(76px, 9vw, 126px); }
.hero::before { position: absolute; top: -60px; right: -80px; width: min(46vw, 700px); height: 1px; transform: rotate(-31deg); transform-origin: right; background: rgba(13,62,138,.15); box-shadow: 0 80px rgba(13,62,138,.08), 0 160px rgba(13,62,138,.06); content: ""; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr); align-items: center; gap: clamp(52px, 7vw, 104px); }
.hero__lead { max-width: 700px; margin-bottom: 30px; font-size: clamp(1.08rem, 1.65vw, 1.34rem); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin: 42px 0 0; padding: 26px 0 0; display: flex; flex-wrap: wrap; gap: 18px 32px; border-top: 1px solid var(--line); list-style: none; }
.hero__trust li { color: #3f4c5d; font-size: 14px; font-weight: 600; }
.hero__trust span { margin-right: 6px; color: var(--orange-dark); font-size: 13px; font-weight: 700; }
.hero__visual { position: relative; }
.brand-visual { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; min-height: 570px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 62px); transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); background: var(--blue); box-shadow: var(--shadow); transition: transform .18s ease-out; }
.brand-visual::before { position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 108px solid var(--orange); border-left: 108px solid transparent; content: ""; }
.brand-visual::after { position: absolute; right: -60px; bottom: 46px; width: 210px; height: 16px; transform: rotate(-36deg); background: var(--orange); content: ""; animation: blueprint-mark 4.8s ease-in-out infinite; }
.brand-visual__grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom right, black, transparent 76%); }
.brand-visual__label { position: absolute; top: 28px; left: 32px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.brand-visual img { position: relative; width: min(100%, 520px); }
.brand-visual__caption { position: absolute; right: 35px; bottom: 32px; left: 35px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: white; }
.brand-visual__caption strong { font-size: 14px; }
.brand-visual__caption span { color: rgba(255,255,255,.82); font-size: 13px; }
.hero__floating-card { position: absolute; right: -22px; bottom: -45px; width: min(330px, 76%); min-height: 120px; padding: 20px 50px 20px 20px; display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 14px; background: var(--paper); box-shadow: var(--shadow-small); }
.hero__floating-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #cbd7e8; color: var(--blue); }
.hero__floating-icon .ui-icon { width: 23px; height: 23px; }
.hero__floating-copy { min-width: 0; display: flex; flex-direction: column; }
.hero__floating-copy small { margin-bottom: 5px; color: var(--orange-dark); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero__floating-copy strong { color: var(--blue-deep); line-height: 1.25; }
.hero__floating-card i { position: absolute; right: 22px; bottom: 20px; color: var(--blue); font-style: normal; font-size: 1.2rem; }

.trust-strip { background: var(--paper); border-block: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { min-height: 112px; padding: 25px clamp(14px, 2vw, 28px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.trust-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.trust-strip i { width: 28px; height: 28px; margin-bottom: 10px; display: grid; place-items: center; color: var(--orange-dark); font-style: normal; }
.trust-strip i .ui-icon { width: 24px; height: 24px; }
.trust-strip strong { color: var(--blue); font-size: .84rem; }
.trust-strip span { color: #4f5c6c; font-size: 13px; }

.section-heading { max-width: 800px; margin-bottom: clamp(38px, 6vw, 68px); }
.section-heading > p:last-child { max-width: 640px; margin-bottom: 0; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .6fr); align-items: end; gap: 56px; }
.section-heading--split h2 { max-width: 850px; margin-bottom: 0; }
.section-heading--split > p, .section-heading--split > div:last-child p { margin-bottom: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-width: 0; min-height: 365px; overflow: hidden; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease; }
.service-card::after { position: absolute; right: -36px; bottom: 25px; width: 110px; height: 8px; transform: translateX(90px) rotate(-40deg); background: var(--orange); content: ""; transition: transform .36s cubic-bezier(.2,.7,.2,1); }
.service-card:hover { z-index: 2; transform: translateY(-7px); background: var(--blue-deep); box-shadow: var(--shadow-small); }
.service-card:hover::after { transform: translateX(0) rotate(-40deg); }
.service-card__top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 38px; }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #c9d6e8; color: var(--blue); transition: transform .28s ease, border-color .28s ease, color .28s ease; }
.service-card__icon .service-icon { width: 28px; height: 28px; }
.service-card__number { color: var(--orange-dark); font-size: 13px; font-weight: 700; }
.service-card:hover .service-card__icon { transform: rotate(-4deg) scale(1.04); border-color: rgba(255,255,255,.34); color: var(--orange); }
.service-card:hover h3, .service-card:hover > p, .service-card:hover .service-card__price, .service-card:hover .text-link { color: white; }
.service-card:hover > p { color: rgba(255,255,255,.8); }
.service-card h3 { min-height: 2.15em; }
.service-card > p { margin-bottom: 20px; font-size: .93rem; }
.service-card__price { margin: auto 0 22px; padding-top: 16px; display: block; border-top: 1px solid var(--line); color: var(--blue); transition: border-color .28s ease, color .28s ease; }
.service-card__price span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.service-card__price strong { display: block; margin-bottom: 3px; color: var(--blue-deep); font-size: 23px; line-height: 1.1; letter-spacing: -.025em; }
.service-card__price small { display: block; color: var(--muted); font-size: 13px; font-weight: 600; }
.service-card__price b { color: var(--orange-dark); }
.service-card:hover .service-card__price { border-color: rgba(255,255,255,.2); }
.service-card:hover .service-card__price span, .service-card:hover .service-card__price small, .service-card:hover .service-card__price strong { color: white; }
.service-card:hover .service-card__price b { color: var(--orange); }
.section-action { margin-top: 36px; display: flex; justify-content: center; }

.method-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(430px, 1fr); gap: clamp(55px, 9vw, 130px); }
.method-intro { align-self: start; position: sticky; top: calc(var(--header-height) + 45px); }
.method-intro h2, .method-intro p { color: white; }
.method-intro p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.75); }
.method-steps { margin: 0; padding: 0; list-style: none; }
.method-steps li { min-height: 138px; padding: 25px 0; display: grid; grid-template-columns: 60px 1fr; gap: 25px; border-top: 1px solid rgba(255,255,255,.22); }
.method-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.method-steps li > span { color: var(--orange); font-size: 13px; font-weight: 700; }
.method-steps h3, .method-steps p { color: white; }
.method-steps h3 { letter-spacing: -.025em; }
.method-steps p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-placeholder { margin: 0; }
.project-placeholder__visual { position: relative; aspect-ratio: 4/3; overflow: hidden; display: grid; place-items: center; padding: 25px; background: var(--blue-soft); border: 1px solid #cdd9ea; }
.project-placeholder__visual::before { position: absolute; inset: 0; opacity: .22; background: repeating-linear-gradient(135deg, transparent 0 26px, var(--blue) 27px 28px); content: ""; }
.project-placeholder__visual::after { position: absolute; right: -26px; bottom: 25px; width: 120px; height: 9px; transform: rotate(-40deg); background: var(--orange); content: ""; }
.project-placeholder__visual img { position: relative; width: min(70%, 280px); }
.project-placeholder__index { position: absolute; top: 18px; left: 20px; color: var(--blue); font-size: 13px; font-weight: 700; }
.project-placeholder__note { position: absolute; right: 18px; bottom: 16px; left: 18px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.project-placeholder figcaption { padding: 18px 2px 0; display: flex; flex-direction: column; }
.project-placeholder figcaption strong { color: var(--blue-deep); }
.project-placeholder figcaption span { color: var(--muted); font-size: .83rem; }
.project-section--real { position: relative; overflow: hidden; }
.project-section--real::before { position: absolute; top: 8%; right: -110px; width: 220px; height: 220px; transform: rotate(45deg); border: 1px solid rgba(13,62,138,.1); content: ""; pointer-events: none; }
.project-section__heading { align-items: end; }
.project-section__heading > p { max-width: 590px; margin-bottom: 5px; }
.project-grid--real { gap: clamp(16px, 2.1vw, 30px); }
.project-photo { min-width: 0; margin: 0; }
.project-photo__visual { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #dce4ee; box-shadow: var(--shadow-small); isolation: isolate; }
.project-photo__visual::after { position: absolute; z-index: 1; inset: 42% 0 0; background: linear-gradient(180deg, transparent, rgba(6,29,63,.72)); content: ""; pointer-events: none; }
.project-photo__visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1), filter .35s ease; }
.project-photo:hover .project-photo__visual img { transform: scale(1.025); filter: saturate(1.04); }
.project-photo__number { position: absolute; z-index: 2; top: 0; left: 0; min-width: 52px; min-height: 47px; display: grid; place-items: center; background: var(--blue); color: white; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.project-photo__label { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; color: white; font-size: clamp(.9rem, 1.3vw, 1.05rem); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.project-photo figcaption { min-height: 88px; padding: 17px 3px 0; display: flex; flex-direction: column; gap: 4px; }
.project-photo figcaption strong { color: var(--blue-deep); font-size: .96rem; }
.project-photo figcaption span { color: var(--muted); font-size: .83rem; line-height: 1.55; }
.home-projects .project-photo { overflow: hidden; border: 1px solid #ced8e6; background: var(--paper); box-shadow: var(--shadow-small); }
.home-projects .project-photo__visual { display: block; box-shadow: none; }
.home-projects .project-photo figcaption { min-height: 128px; padding: 19px 22px 22px; gap: 7px; border-top: 3px solid var(--orange); background: var(--paper); }
.home-projects .project-photo figcaption strong { color: var(--blue-deep); font-size: 1.04rem; line-height: 1.3; }
.home-projects .project-photo figcaption span { color: #526174; font-size: .88rem; line-height: 1.55; }
.project-section__footer { margin-top: clamp(34px, 5vw, 58px); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); }
.project-section__footer > span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .82rem; }
.project-section__footer > span .ui-icon { width: 18px; height: 18px; flex: 0 0 18px; color: var(--orange-dark); }
.project-section__footer .text-link { flex: 0 0 auto; }

.local-section { padding-top: 0; }
.local-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.local-map { position: relative; min-height: 480px; overflow: hidden; background: var(--blue-deep); }
.local-map::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 42px 42px; content: ""; }
.local-map__coast { position: absolute; right: -12%; bottom: -25%; width: 70%; height: 110%; transform: rotate(18deg); border-left: 5px solid var(--orange); border-radius: 46% 0 0 46%; background: rgba(13,62,138,.7); }
.local-map__point { position: absolute; padding-left: 18px; color: white; font-size: 13px; font-weight: 700; }
.local-map__point::before { position: absolute; top: 7px; left: 0; width: 8px; height: 8px; border: 2px solid var(--orange); border-radius: 50%; content: ""; }
.local-map__point--tarragona { top: 39%; right: 19%; }
.local-map__point--reus { top: 28%; left: 40%; }
.local-map__point--cambrils { bottom: 28%; left: 28%; }
.local-map__point--salou { right: 28%; bottom: 25%; }
.local-copy p:not(.eyebrow) { max-width: 540px; }
.coverage-panel { min-height: 500px; padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; border: 1px solid var(--line); border-left: 6px solid var(--orange); background: var(--paper); box-shadow: var(--shadow-small); }
.coverage-panel__top { padding-bottom: 28px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 17px; border-bottom: 1px solid var(--line); }
.coverage-panel__pin { width: 58px; height: 58px; display: grid; place-items: center; background: var(--blue); color: white; }
.coverage-panel__pin .ui-icon { width: 28px; height: 28px; }
.coverage-panel__top div { display: flex; flex-direction: column; }
.coverage-panel__top small { color: var(--muted); font-size: 13px; }
.coverage-panel__top strong { color: var(--blue-deep); font-size: 28px; line-height: 1.1; }
.coverage-panel__top > span:last-child { align-self: start; padding: 7px 10px; background: var(--blue-soft); color: var(--blue); font-size: 13px; font-weight: 700; }
.coverage-panel__cities { margin-block: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.coverage-panel__cities article { min-height: 104px; padding: 22px 12px 22px 0; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }
.coverage-panel__cities article:nth-child(odd) { margin-right: 22px; border-right: 1px solid var(--line); }
.coverage-panel__cities article > span { color: var(--orange-dark); font-size: 13px; font-weight: 800; }
.coverage-panel__cities article div { display: flex; flex-direction: column; }
.coverage-panel__cities strong { color: var(--blue-deep); font-size: 16px; }
.coverage-panel__cities small { color: var(--muted); font-size: 13px; line-height: 1.4; }
.coverage-panel__footer { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.coverage-panel__footer > span, .coverage-panel__footer > a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; }
.coverage-panel__footer > span { color: var(--muted); }
.coverage-panel__footer > span .ui-icon { color: var(--orange-dark); }
.coverage-panel__footer > a { flex: 0 0 auto; color: var(--blue); font-weight: 700; }
.coverage-panel__footer > a .ui-icon { width: 15px; height: 15px; }

.faq-section { background: var(--paper); }
.faq-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(30px, 6vw, 90px); }
.faq-column { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 82px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--blue-deep); cursor: pointer; font-weight: 800; line-height: 1.35; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 17px; height: 17px; flex: 0 0 17px; }
.faq-item summary i::before, .faq-item summary i::after { position: absolute; top: 8px; left: 1px; width: 15px; height: 2px; background: var(--orange); content: ""; transition: transform .2s ease; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-answer { padding: 0 40px 22px 0; }
.faq-answer p { margin: 0; font-size: .9rem; }

.footer-cta { padding: clamp(54px, 7vw, 90px) 0; overflow: hidden; background: var(--blue); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta h2 { max-width: 700px; margin: 0; color: white; font-size: clamp(2rem, 4vw, 3.8rem); }
.footer-cta__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 11px; }
.site-footer { padding: 68px 0 28px; background: var(--blue-deep); color: white; }
.footer-grid { display: grid; grid-template-columns: minmax(230px, .85fr) minmax(500px, 1.65fr) minmax(230px, .9fr); gap: clamp(34px, 4vw, 64px); }
.footer-brand img { width: min(100%, 260px); margin-bottom: 25px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.76); font-size: 14px; }
.footer-gallery-link { width: fit-content; margin-top: 22px; display: inline-flex; align-items: center; gap: 9px; color: white; font-size: 14px; font-weight: 700; }
.footer-gallery-link .ui-icon { width: 19px; height: 19px; color: var(--orange); }
.footer-gallery-link:hover { color: var(--orange); }
.site-footer h3 { margin-bottom: 22px; color: white; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links--services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 22px; }
.footer-links li { min-width: 0; break-inside: avoid; }
.footer-links a, .site-footer address a, .site-footer address span { display: block; color: rgba(255,255,255,.8); font-size: 13px; font-style: normal; }
.footer-links a:hover, .site-footer address a:hover { color: var(--orange); }
.site-footer address { display: grid; gap: 10px; }
.footer-title-icon { display: flex; align-items: center; gap: 9px; }
.footer-title-icon .ui-icon { color: var(--orange); }
.footer-links--services a { min-height: 47px; display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 8px; }
.footer-service-icon { width: 20px; height: 20px; display: grid !important; place-items: center; color: var(--orange); }
.footer-service-icon .service-icon { width: 16px; height: 16px; }
.footer-service-copy { min-width: 0; display: flex !important; flex-direction: column; gap: 2px; line-height: 1.3; }
.footer-service-copy > span { color: rgba(255,255,255,.9) !important; font-weight: 650; }
.footer-service-copy small { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.35; }
.footer-links--services a:hover .footer-service-copy small { color: rgba(255,255,255,.82); }
.site-footer address > a, .site-footer .footer-address-line, .site-footer .footer-hours-line { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 9px; }
.site-footer address .ui-icon { width: 16px; height: 16px; margin-top: 3px; color: var(--orange); }
.site-footer address > a > span, .site-footer .footer-address-line > span, .site-footer .footer-hours-line > span { display: block; }
.site-footer .footer-hours-line { color: rgba(255,255,255,.8); font-size: 13px; font-style: normal; }
.site-footer .footer-address-line small { display: block; margin-top: 2px; color: var(--orange); font-size: 13px; font-style: normal; }
.whatsapp-link { display: inline-block; margin-top: 25px; color: var(--orange); font-size: 14px; font-weight: 700; }
.footer-bottom { margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.site-footer--compact { padding: 0; }
.site-footer--compact .footer-bottom { min-height: 69px; margin-top: 0; padding: 20px 170px 20px 0; border-top: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom nav a { display: inline-flex; align-items: center; gap: 5px; }
.footer-bottom nav .ui-icon { width: 13px; height: 13px; }
.footer-bottom a:hover { color: white; }
.floating-whatsapp { position: fixed; z-index: 125; right: 22px; bottom: 22px; left: auto; min-height: 54px; padding: 12px 18px; display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; background: #25a862; color: white; box-shadow: 0 12px 30px rgba(6,29,63,.22); font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #128c4a; }
.floating-whatsapp .ui-icon { width: 24px; height: 24px; }

/* Páginas interiores */
.page-hero { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 130px) 0; border-bottom: 1px solid var(--line); }
.page-hero::after { position: absolute; z-index: -1; top: -80px; right: -70px; width: 34vw; height: 34vw; min-width: 380px; min-height: 380px; transform: rotate(45deg); border: 1px solid rgba(13,62,138,.12); content: ""; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .55fr); align-items: end; gap: clamp(50px, 9vw, 130px); }
.page-hero__copy p:not(.eyebrow) { max-width: 800px; margin-bottom: 0; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.page-hero__aside { padding: 30px 0 0 34px; border-left: 4px solid var(--orange); }
.page-hero__aside .big-number { display: block; color: var(--blue); font-size: clamp(4.5rem, 8vw, 7.8rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.page-hero__aside p { margin: 28px 0 23px; }
.combination-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 130px); }
.combination-list { border-top: 1px solid #cfd0ca; }
.combination-list > div { padding: 24px 0; display: grid; grid-template-columns: 46px 1fr; gap: 20px; border-bottom: 1px solid #cfd0ca; }
.combination-list span { color: var(--orange-dark); font-size: 13px; font-weight: 800; }
.combination-list p { margin: 0; }
.combination-list strong { color: var(--blue-deep); }

.page-hero--about { padding-bottom: 0; }
.page-hero--about .page-hero__grid { align-items: stretch; }
.page-hero--about .page-hero__copy { padding-bottom: clamp(70px, 9vw, 130px); align-self: center; }
.portrait-placeholder { position: relative; min-height: 510px; display: grid; place-content: center; padding: 48px 48px 112px; overflow: hidden; background: var(--blue); }
.portrait-placeholder::before { position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(45deg, transparent 0 40px, white 41px 42px); content: ""; }
.portrait-placeholder::after { position: absolute; top: 68px; right: -62px; width: 220px; height: 14px; transform: rotate(-38deg); background: var(--orange); content: ""; }
.portrait-placeholder img { position: relative; z-index: 1; }
.portrait-placeholder > span { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; min-height: 72px; padding: 17px 25px; display: flex; align-items: center; border-top: 4px solid var(--orange); background: var(--blue-deep); color: white; font-size: 13px; font-weight: 700; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.portrait-placeholder--photo { padding: 0 0 72px; place-content: normal; background: var(--blue-deep); }
.portrait-placeholder--photo::before { z-index: 2; opacity: 1; background: linear-gradient(180deg, rgba(6,29,63,.08), transparent 30%, rgba(6,29,63,.16)); pointer-events: none; }
.portrait-placeholder--photo::after { z-index: 3; }
.portrait-placeholder--photo img { position: absolute; z-index: 1; inset: 0 0 72px; width: 100%; height: calc(100% - 72px); object-fit: cover; object-position: center 30%; }
.portrait-placeholder--photo > span { z-index: 4; }
.manifesto-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); }
.manifesto-quote { position: relative; padding: 28px 0 28px 65px; border-left: 4px solid var(--orange); }
.manifesto-quote > span { position: absolute; top: -32px; left: 20px; color: var(--blue-soft); font-size: 9rem; font-family: Georgia, serif; line-height: 1; }
.manifesto-quote blockquote { position: relative; margin: 0; color: var(--blue); font-size: clamp(1.8rem, 3.2vw, 3.15rem); font-weight: 700; line-height: 1.15; letter-spacing: -.04em; }
.manifesto-copy p:not(.eyebrow) { font-size: 1.02rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d6d3cc; border-left: 1px solid #d6d3cc; }
.values-grid article { min-height: 300px; padding: 30px; border-right: 1px solid #d6d3cc; border-bottom: 1px solid #d6d3cc; }
.values-grid article > span { display: block; margin-bottom: 62px; color: var(--orange-dark); font-size: 13px; font-weight: 700; }
.values-grid p { font-size: .88rem; }
.process-panel { padding: clamp(38px, 6vw, 75px); display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 8vw, 110px); background: var(--blue); }
.process-panel h2, .process-panel p { color: white; }
.process-panel > div:last-child p { color: rgba(255,255,255,.72); }

.construction-page { min-height: 72vh; display: grid; align-items: center; padding: clamp(70px, 10vw, 150px) 0; overflow: hidden; }
.construction-page__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.construction-page__copy p:not(.eyebrow) { max-width: 700px; font-size: 1.12rem; }
.construction-page__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.construction-mark { position: relative; min-height: 430px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.construction-mark::before { position: absolute; inset: 0; opacity: .3; background: repeating-linear-gradient(-45deg, var(--blue-soft) 0 18px, transparent 18px 36px); content: ""; }
.construction-mark span, .construction-mark strong { position: relative; color: var(--blue); }
.construction-mark span { font-size: 1rem; font-weight: 800; letter-spacing: .5em; }
.construction-mark strong { font-size: clamp(2.7rem, 5vw, 5.6rem); letter-spacing: -.06em; line-height: 1; }
.construction-mark i { position: absolute; right: -30px; bottom: 46px; width: 190px; height: 13px; transform: rotate(-38deg); background: var(--orange); }

body.blog-page { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
body.blog-page > .topbar, body.blog-page > .site-header, body.blog-page > .site-footer { flex: 0 0 auto; }
body.blog-page > main { min-height: 0; display: flex; flex: 1 1 auto; }
.blog-building { width: 100%; min-height: 0; display: grid; flex: 1 1 auto; place-items: center; padding: clamp(42px, 5vw, 70px) 0; background: var(--canvas); }
.blog-building__inner { position: relative; width: min(100%, 850px); min-height: 460px; padding: clamp(44px, 7vw, 80px); overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-small); }
.blog-building__inner::before { position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 105px solid var(--blue); border-left: 105px solid transparent; content: ""; }
.blog-building__mark { position: absolute; right: clamp(30px, 7vw, 85px); bottom: clamp(35px, 7vw, 75px); width: 116px; height: 116px; display: grid; place-items: center; border: 1px solid #cbd7e8; color: var(--blue); }
.blog-building__icon { width: 58px; height: 58px; }
.blog-building h1 { margin-bottom: 18px; font-size: clamp(3.2rem, 8vw, 6.7rem); }
.blog-building p:not(.eyebrow) { max-width: 520px; margin-bottom: 25px; padding-right: 105px; }
.blog-building__line { position: absolute; right: 25px; bottom: 18px; left: 25px; height: 3px; overflow: hidden; background: var(--blue-soft); }
.blog-building__line span { width: 34%; height: 100%; display: block; background: var(--orange); animation: build-line 2.8s cubic-bezier(.2,.7,.2,1) infinite; }

/* Servicio individual */
.service-hero { position: relative; overflow: hidden; padding: 28px 0 clamp(76px, 9vw, 128px); background: linear-gradient(120deg, var(--canvas) 0 68%, var(--blue-soft) 68%); }
.breadcrumbs { margin-bottom: clamp(55px, 8vw, 100px); display: flex; flex-wrap: wrap; gap: 8px; color: #647184; font-size: 13px; }
.breadcrumbs a:hover { color: var(--blue); }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .55fr); align-items: center; gap: clamp(55px, 9vw, 130px); }
.service-hero__copy h1 { max-width: 850px; }
.service-hero__copy > p:not(.eyebrow) { max-width: 780px; font-size: clamp(1.05rem, 1.55vw, 1.25rem); }
.service-price-card { position: relative; padding: clamp(30px, 4vw, 48px); background: var(--blue); color: white; box-shadow: var(--shadow); }
.service-price-card::before { position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 72px solid var(--orange); border-left: 72px solid transparent; content: ""; }
.service-price-card > span { display: block; margin-bottom: 28px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-price-card__from { display: block; margin-bottom: 4px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 600; }
.service-price-card > strong { display: block; white-space: nowrap; color: white; font-size: clamp(2.55rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.045em; }
.service-price-card > p { margin: 10px 0 15px; color: white; }
.service-price-card > p b { color: var(--orange); }
.service-price-card__notice { display: block; padding-bottom: 27px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 400; line-height: 1.55; }
.service-price-card ul { margin: 0; padding: 23px 0 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.service-price-card li { position: relative; padding: 6px 0 6px 18px; color: rgba(255,255,255,.88); font-size: 14px; }
.service-price-card li::before { position: absolute; top: 15px; left: 0; width: 7px; height: 2px; background: var(--orange); content: ""; }
.scope-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(450px, 1.2fr); gap: clamp(60px, 9vw, 140px); }
.scope-copy { align-self: start; position: sticky; top: calc(var(--header-height) + 40px); }
.scope-copy > p:not(.eyebrow) { max-width: 520px; }
.scope-note { margin-top: 28px; padding: 19px 0 0 24px; border-top: 1px solid var(--line); border-left: 3px solid var(--orange); font-size: .85rem; }
.included-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.included-list li { min-height: 90px; padding: 24px 0; display: grid; grid-template-columns: 55px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.included-list span { color: var(--orange-dark); font-size: 13px; font-weight: 800; }
.included-list p { margin: 0; color: var(--blue-deep); font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 700; }
.price-breakdown { border-top: 1px solid var(--line); background: var(--blue-soft); }
.price-breakdown__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #c7d5e7; border-left: 1px solid #c7d5e7; }
.price-tier { position: relative; min-height: 310px; padding: clamp(27px, 3.5vw, 44px); border-right: 1px solid #c7d5e7; border-bottom: 1px solid #c7d5e7; background: rgba(255,255,255,.72); }
.price-tier__number { display: block; margin-bottom: 50px; color: var(--orange-dark); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.price-tier h3 { min-height: 2.5em; margin-bottom: 20px; font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.price-tier > strong { display: inline-block; color: var(--blue-deep); font-size: clamp(1.85rem, 2.8vw, 2.7rem); line-height: 1; letter-spacing: -.04em; }
.price-tier > small { margin-left: 7px; color: var(--orange-dark); font-size: 13px; font-weight: 800; }
.price-tier p { margin: 19px 0 0; font-size: .88rem; }
.price-breakdown__notice { max-width: 820px; margin: 27px 0 0; padding-left: 19px; border-left: 3px solid var(--orange); font-size: .84rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d2d0ca; border-left: 1px solid #d2d0ca; }
.process-card { min-height: 320px; padding: clamp(28px, 4vw, 46px); border-right: 1px solid #d2d0ca; border-bottom: 1px solid #d2d0ca; }
.process-card > span { display: block; margin-bottom: 76px; color: var(--orange-dark); font-size: 13px; font-weight: 800; }
.process-card p { font-size: .88rem; }
.detail-grid { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: clamp(60px, 10vw, 160px); }
.detail-marker { position: relative; min-height: 390px; overflow: hidden; display: grid; place-items: center; background: var(--blue); }
.detail-marker::before { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px); background-size: 34px 34px; content: ""; }
.detail-marker span { position: relative; color: white; font-size: clamp(6rem, 12vw, 12rem); font-weight: 900; letter-spacing: -.1em; line-height: 1; }
.detail-marker i { position: absolute; right: -25px; bottom: 42px; width: 170px; height: 13px; transform: rotate(-39deg); background: var(--orange); }
.detail-copy > p:not(.eyebrow) { max-width: 700px; font-size: 1.05rem; }
.detail-local { padding-left: 20px; border-left: 3px solid var(--orange); color: #3f4c5d; font-size: 15px !important; }
.detail-facts { margin-top: 35px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.detail-facts > div { padding: 19px 20px 0 0; display: flex; flex-direction: column; }
.detail-facts strong { color: var(--blue); font-size: 13px; }
.detail-facts span { color: var(--muted); font-size: 14px; }
.related-services { padding-top: 0; }

/* Contacto */
.contact-direct { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-direct > p { margin: 0; padding: 0 0 16px; font-size: .8rem; }
.contact-direct a { padding: 15px 0; display: grid; grid-template-columns: 30px 65px minmax(0, 1fr); align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.contact-direct a > i { width: 30px; height: 30px; display: grid; place-items: center; color: var(--orange-dark); font-style: normal; }
.contact-direct a > i .ui-icon { width: 22px; height: 22px; }
.contact-direct a span { color: var(--muted); font-size: 13px; }
.contact-direct a strong { color: var(--blue); font-size: 14px; text-align: right; overflow-wrap: anywhere; }
.contact-direct a[href^="mailto:"] strong { font-size: clamp(12.5px, .95vw, 14px); letter-spacing: -.01em; white-space: nowrap; overflow-wrap: normal; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(520px, 1fr); align-items: start; gap: clamp(60px, 9vw, 130px); }
.contact-info { position: sticky; top: calc(var(--header-height) + 40px); }
.contact-checklist { margin: 34px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contact-checklist li { padding: 15px 0; display: grid; grid-template-columns: 44px 1fr; border-bottom: 1px solid var(--line); color: var(--blue-deep); font-size: 14px; font-weight: 700; }
.contact-checklist span { width: 26px; height: 26px; display: grid; place-items: center; color: var(--orange-dark); }
.contact-checklist span .ui-icon { width: 21px; height: 21px; }
.contact-address { display: flex; flex-direction: column; font-style: normal; }
.contact-address strong { color: var(--blue); font-size: .8rem; }
.contact-address a { margin-top: 5px; display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 8px; color: var(--muted); font-size: .85rem; }
.contact-address a:hover { color: var(--blue); }
.contact-address a .ui-icon { margin-top: 3px; color: var(--orange-dark); }
.contact-address small { color: #8b929b; }
.form-panel { padding: clamp(26px, 4vw, 50px); background: var(--paper); box-shadow: var(--shadow-small); }
.contact-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: var(--blue-deep); font-size: 14px; font-weight: 700; }
.contact-form label > span, .contact-form label > b { color: var(--orange-dark); }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cfd5dd; border-radius: 0; outline: 0; background: #fdfdfc; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,62,138,.1); }
.privacy-check { grid-template-columns: 20px 1fr !important; align-items: start; gap: 11px !important; font-weight: 400 !important; line-height: 1.45; }
.privacy-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
.privacy-check a { color: var(--blue); text-decoration: underline; }
.form-caption { margin: -10px 0 0; text-align: center; font-size: 13px; }
.form-honeypot { position: absolute; left: -9999px; }
.form-notice { margin-bottom: 25px; padding: 17px 20px; border-left: 4px solid; }
.form-notice p, .form-notice ul { margin: 5px 0 0; font-size: 14px; }
.form-notice--success { border-color: var(--success); background: #eaf6f0; color: var(--success); }
.form-notice--error { border-color: var(--error); background: #fff0f0; color: var(--error); }

/* Legales */
.legal-page { padding: clamp(70px, 10vw, 140px) 0; }
.legal-layout { display: grid; grid-template-columns: minmax(280px, .6fr) minmax(0, 1fr); align-items: start; gap: clamp(60px, 10vw, 150px); }
.legal-layout > header { position: sticky; top: calc(var(--header-height) + 40px); }
.legal-layout h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.legal-update { margin-top: 24px; color: var(--muted); font-size: 13px; }
.legal-content { min-width: 0; max-width: 100%; padding-top: 12px; border-top: 1px solid var(--line); }
.legal-content section { padding: 0 0 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 1.35rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { font-size: .9rem; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { margin: 15px 0 22px; padding-left: 21px; }
.legal-content li + li { margin-top: 9px; }
.legal-data { margin: 0; }
.legal-data > div { display: grid; grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr); gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.legal-data > div:last-child { border-bottom: 0; }
.legal-data dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 650; overflow-wrap: anywhere; }
.legal-table-wrap { width: 100%; margin: 18px 0 24px; overflow-x: auto; border: 1px solid var(--line); }
.legal-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13px; line-height: 1.55; }
.legal-table th, .legal-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { background: var(--blue-soft); color: var(--blue-deep); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.legal-table code { padding: 2px 5px; background: var(--sand); color: var(--blue-deep); font-size: 12px; }
.legal-cookie-actions { margin-top: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.legal-cookie-actions .button { color: white; text-decoration: none; }
.legal-cookie-actions small { max-width: 420px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.cookie-declaration:empty { min-height: 80px; border: 1px dashed var(--line); background: var(--sand); }

/* Galería */
.gallery-hero { padding: clamp(58px, 7vw, 88px) 0 clamp(48px, 6vw, 70px); border-bottom: 1px solid var(--line); }
.gallery-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .5fr); align-items: end; gap: clamp(45px, 9vw, 125px); }
.gallery-hero h1 { max-width: 800px; margin-bottom: 0; font-size: clamp(2.8rem, 5.3vw, 4.8rem); }
.gallery-hero__aside { padding: 25px 0 5px 28px; border-left: 3px solid var(--orange); }
.gallery-hero__aside > .ui-icon { width: 34px; height: 34px; margin-bottom: 18px; color: var(--blue); }
.gallery-hero__aside p { margin: 0; }
.gallery-section { min-height: 440px; padding: 45px 0 clamp(80px, 10vw, 140px); }
.gallery-toolbar { margin-bottom: 42px; padding-bottom: 7px; display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-filter { min-width: max-content; min-height: 48px; padding: 9px 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: var(--paper); color: var(--blue-deep); cursor: pointer; font-size: 13px; font-weight: 700; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.gallery-filter:hover, .gallery-filter.is-active { border-color: var(--blue); background: var(--blue); color: white; }
.gallery-filter .service-icon { width: 19px; height: 19px; }
.gallery-filter small { min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 13px; }
.gallery-filter.is-active small { background: var(--orange); color: var(--blue-deep); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 18px; }
.gallery-item[hidden] { display: none; }
.gallery-item__image { position: relative; width: 100%; padding: 0; overflow: hidden; display: block; border: 0; background: var(--blue-soft); cursor: zoom-in; }
.gallery-item__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-item__image > span { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; display: grid; place-items: center; transform: translateY(60px); background: var(--orange); color: var(--blue-deep); transition: transform .3s ease; }
.gallery-item__image > span .ui-icon { width: 21px; height: 21px; }
.gallery-item:hover .gallery-item__image img { transform: scale(1.035); }
.gallery-item:hover .gallery-item__image > span { transform: none; }
.gallery-item__caption { position: relative; padding: 18px 0 0 18px; border-left: 2px solid var(--orange); }
.gallery-item__caption > div { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.gallery-item__caption span, .gallery-item__caption small, .gallery-item__caption time { color: #657184; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.gallery-item__caption small { color: var(--orange-dark); }
.gallery-item__caption h2 { margin: 7px 0 3px; font-size: 1.25rem; letter-spacing: -.025em; }
.gallery-no-results { padding: 60px 20px; border: 1px dashed #aeb8c4; text-align: center; }
.gallery-empty { max-width: 760px; margin: 55px auto 0; padding: clamp(40px, 7vw, 75px); overflow: hidden; position: relative; border: 1px solid var(--line); background: var(--paper); text-align: center; }
.gallery-empty::after { position: absolute; right: -25px; bottom: 30px; width: 130px; height: 10px; transform: rotate(-38deg); background: var(--orange); content: ""; }
.gallery-empty > div { width: 76px; height: 76px; margin: 0 auto 25px; display: grid; place-items: center; background: var(--blue); color: white; }
.gallery-empty > div .ui-icon { width: 38px; height: 38px; }
.gallery-empty .eyebrow { justify-content: center; }
.gallery-empty h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.gallery-empty > p:last-child { max-width: 560px; margin: 0 auto; }
.gallery-lightbox { width: min(94vw, 1180px); max-width: none; max-height: 92vh; padding: 0; overflow: visible; border: 0; background: transparent; }
.gallery-lightbox::backdrop { background: rgba(3,15,34,.9); backdrop-filter: blur(4px); }
.gallery-lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.gallery-lightbox button { position: absolute; z-index: 2; top: -18px; right: -18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--orange); color: var(--blue-deep); cursor: pointer; font-size: 27px; line-height: 1; }

/* Animaciones progresivas */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s cubic-bezier(.2,.7,.2,1); }
.js .reveal { transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes blueprint-mark {
    0%, 72%, 100% { transform: translateX(0) rotate(-36deg); }
    82% { transform: translateX(-18px) rotate(-36deg); }
    90% { transform: translateX(8px) rotate(-36deg); }
}

@keyframes build-line {
    0% { transform: translateX(-110%); }
    55%, 100% { transform: translateX(305%); }
}

@media (max-width: 1100px) {
    :root { --header-height: 76px; }
    .topbar__inner > p { display: none; }
    .topbar__inner { justify-content: flex-end; }
    .brand { flex-basis: 220px; max-width: 220px; }
    .main-nav { gap: 17px; }
    .nav-link { font-size: 13px; }
    .hero__grid { grid-template-columns: 1fr .85fr; gap: 54px; }
    .brand-visual { min-height: 500px; }
    .service-card { min-height: 340px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: .75fr 1.25fr .9fr; gap: 38px; }
}

@media (max-width: 1180px) {
    body { padding-top: var(--header-height); }
    .container { width: min(calc(100% - 34px), var(--container)); }
    .topbar { display: none; }
    .site-header { position: fixed; top: 0; right: 0; left: 0; width: 100%; height: var(--header-height); }
    .menu-toggle { min-width: 48px; padding: 5px; display: flex; }
    .main-nav { position: fixed; z-index: 110; top: var(--header-height); right: 0; bottom: 0; left: 0; width: 100%; height: auto; padding: 16px 22px 28px; display: flex; flex-direction: column; align-items: stretch; gap: 2px; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; transform: translateX(100%); background: var(--canvas); opacity: 0; transition: transform .3s ease, opacity .25s ease, visibility .3s; }
    .main-nav.is-open { visibility: visible; transform: none; opacity: 1; }
    .main-nav > .nav-link, .nav-services > .nav-link { width: 100%; min-height: 54px; padding: 8px 3px; display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 12px; border-bottom: 1px solid var(--line); font-size: clamp(1.05rem, 3.7vw, 1.25rem); }
    .nav-page-icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #cbd6e4; color: var(--blue); }
    .nav-page-icon .ui-icon { width: 19px; height: 19px; }
    .main-nav .nav-link::after { display: none; }
    .nav-services { width: 100%; display: block; }
    .nav-services::before { display: none; }
    .nav-services__trigger { grid-template-columns: 40px minmax(0, 1fr) 22px !important; }
    .nav-chevron { width: 20px; height: 20px; display: block; justify-self: end; }
    .services-menu { position: static; width: 100%; max-height: 0; padding: 0; overflow: hidden; display: block; visibility: hidden; transform: none; border: 0; background: transparent; box-shadow: none; opacity: 0; pointer-events: none; transition: max-height .35s ease, opacity .25s ease, visibility .35s; }
    .nav-services:hover .services-menu, .nav-services:focus-within .services-menu { max-height: 0; visibility: hidden; transform: none; opacity: 0; pointer-events: none; }
    .nav-services.is-open .services-menu { max-height: none; overflow: visible; visibility: visible; opacity: 1; pointer-events: auto; }
    .nav-services.is-open .nav-chevron { transform: rotate(180deg); }
    .services-menu__head { display: none; }
    .services-menu__grid { display: grid; grid-template-columns: 1fr; }
    .services-menu__item { min-height: 57px; padding: 6px 3px; grid-template-columns: 36px minmax(0, 1fr) 18px; gap: 10px; border-right: 0 !important; background: transparent; }
    .services-menu__icon { width: 34px; height: 34px; background: white; }
    .services-menu__copy strong { font-size: 14px; }
    .services-menu__copy small { font-size: 13px; white-space: nowrap; }
    .main-nav.services-open { padding-top: 10px; padding-bottom: 20px; overflow-y: hidden; }
    .main-nav.services-open > .nav-link, .main-nav.services-open > .header-project-link, .main-nav.services-open > .mobile-nav-card { display: none; }
    .main-nav.services-open .nav-services__trigger { color: var(--blue); }
    body.menu-open .floating-whatsapp { opacity: 0; pointer-events: none; }
    .header-project-link { display: none; }
    .mobile-nav-card { margin-top: 18px; padding: 20px; display: block; border-top: 4px solid var(--orange); background: var(--blue-deep); color: white; box-shadow: var(--shadow-small); }
    .mobile-nav-card p { margin: 0 0 16px; display: flex; flex-direction: column; }
    .mobile-nav-card p small { color: rgba(255,255,255,.7); font-size: 13px; }
    .mobile-nav-card p strong { color: white; font-size: 17px; }
    .mobile-nav-card > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .mobile-nav-card > div a { min-height: 44px; padding: 9px 11px; display: flex; align-items: center; justify-content: center; gap: 8px; background: white; color: var(--blue-deep); font-size: 13px; font-weight: 800; }
    .mobile-nav-card > div a:last-child { background: #25a862; color: white; }
    .mobile-nav-card__location { margin-top: 15px; display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 8px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.4; }
    .mobile-nav-card__location .ui-icon { margin-top: 2px; color: var(--orange); }
    .menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .menu-toggle__icon { width: 31px; gap: 6px; }
    .menu-toggle__icon i { height: 3px; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(9px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-9px) rotate(-45deg); }
    .hero { padding-top: 65px; }
    .hero__grid, .page-hero__grid, .service-hero__grid { grid-template-columns: 1fr; }
    .hero__content { max-width: 780px; }
    .hero__visual { width: min(100%, 680px); margin-left: auto; }
    .brand-visual { min-height: 480px; }
    .hero__floating-card { position: relative; right: auto; bottom: auto; width: 100%; min-height: 94px; margin-top: 12px; padding: 17px 48px 17px 17px; box-shadow: 0 8px 24px rgba(6,29,63,.08); }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid > div:nth-child(3) { border-left: 1px solid var(--line); }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 22px; }
    .section-heading--split > p, .section-heading--split > div:last-child { max-width: 700px; }
    .method-grid, .scope-grid { grid-template-columns: 1fr; }
    .method-intro, .scope-copy, .contact-info, .legal-layout > header { position: static; }
    .project-grid { gap: 12px; }
    .local-grid { grid-template-columns: 1fr; }
    .coverage-panel { min-height: 470px; }
    .footer-cta__inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .page-hero__aside { max-width: 520px; }
    .page-hero--about .page-hero__copy { padding-bottom: 0; }
    .portrait-placeholder { min-height: 420px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 55px; }
    .process-panel { grid-template-columns: 1fr; gap: 25px; }
    .construction-page__grid { grid-template-columns: 1fr; }
    .construction-mark { min-height: 330px; }
    .service-hero { background: linear-gradient(180deg, var(--canvas) 0 72%, var(--blue-soft) 72%); }
    .service-price-card { width: min(100%, 560px); }
    .detail-grid { grid-template-columns: .8fr 1.2fr; gap: 55px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { max-width: 700px; }
    .legal-layout { grid-template-columns: 1fr; gap: 55px; }
    .gallery-hero__grid { grid-template-columns: 1fr; }
    .gallery-hero__aside { max-width: 620px; }
}

@media (max-width: 1180px) and (max-height: 820px) {
    .main-nav.services-open { overflow-y: auto; }
}

@media (max-width: 700px) {
    body { padding-bottom: 0; font-size: 16px; }
    body.blog-page { padding-bottom: 0; }
    h1 { font-size: clamp(2.55rem, 12vw, 4.25rem); }
    h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 76px 0; }
    .brand { max-width: 188px; }
    .button { min-height: 50px; }
    .hero { padding: 48px 0 85px; }
    .hero__grid { gap: 52px; }
    .hero__lead { font-size: 1.03rem; }
    .hero__actions { display: grid; grid-template-columns: 1fr; }
    .hero__trust { display: grid; grid-template-columns: 1fr; gap: 10px; }
    .brand-visual { min-height: 380px; padding: 26px; }
    .brand-visual__label { top: 20px; left: 21px; }
    .brand-visual__caption { right: 22px; bottom: 22px; left: 22px; flex-direction: column; align-items: flex-start; gap: 2px; }
    .hero__floating-card { position: relative; right: auto; bottom: auto; width: 100%; min-height: 94px; margin-top: 12px; padding: 17px 48px 17px 17px; box-shadow: 0 8px 24px rgba(6,29,63,.08); }
    .trust-strip__grid { grid-template-columns: 1fr 1fr; }
    .trust-strip__grid > div { min-height: 100px; padding: 18px 14px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; padding: 27px; }
    .service-card__top { margin-bottom: 30px; }
    .service-card h3 { min-height: 0; }
    .method-grid { gap: 45px; }
    .method-steps li { grid-template-columns: 45px 1fr; gap: 12px; }
    .project-grid { grid-template-columns: 1fr; gap: 38px; }
    .project-placeholder__visual { aspect-ratio: 16/11; }
    .project-grid--real { gap: 34px; }
    .project-photo__visual { aspect-ratio: 16/11; }
    .project-photo figcaption { min-height: 0; }
    .home-projects .project-photo figcaption { min-height: 0; padding: 20px 21px 22px; }
    .project-section__footer { align-items: flex-start; flex-direction: column; gap: 14px; }
    .coverage-panel { min-height: 0; padding: 24px 20px; }
    .coverage-panel__top { grid-template-columns: 48px 1fr; padding-bottom: 22px; }
    .coverage-panel__pin { width: 48px; height: 48px; }
    .coverage-panel__top > span:last-child { grid-column: 1 / -1; width: fit-content; margin-top: 2px; }
    .coverage-panel__cities article { min-height: 96px; grid-template-columns: 25px 1fr; }
    .coverage-panel__cities article:nth-child(odd) { margin-right: 12px; }
    .coverage-panel__cities article:nth-child(even) { padding-left: 11px; }
    .coverage-panel__footer { align-items: flex-start; flex-direction: column; }
    .faq-columns { grid-template-columns: 1fr; }
    .faq-column + .faq-column { border-top: 0; }
    .faq-item summary { min-height: 74px; padding: 19px 0; }
    .footer-cta__actions { width: 100%; display: grid; grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-links--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-bottom { flex-direction: column; }
    .site-footer--compact .footer-bottom { min-height: 94px; padding: 15px 72px 15px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
    .site-footer--compact .footer-bottom > p { display: block; font-size: 11px; line-height: 1.4; }
    .site-footer--compact .footer-bottom nav { gap: 15px; }
    .site-footer--compact .footer-bottom nav a { font-size: 12px; }
    .floating-whatsapp { right: 17px; bottom: 17px; left: auto; width: 58px; height: 58px; min-height: 58px; padding: 0; justify-content: center; }
    .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .floating-whatsapp .ui-icon { width: 28px; height: 28px; }
    .page-hero { padding: 70px 0; }
    .page-hero__grid { gap: 45px; }
    .page-hero__aside { padding-left: 22px; }
    .combination-grid { grid-template-columns: 1fr; gap: 30px; }
    .portrait-placeholder { min-height: 340px; padding: 30px 30px 100px; }
    .portrait-placeholder::after { top: 48px; right: -78px; width: 190px; height: 12px; }
    .portrait-placeholder > span { min-height: 68px; padding: 14px 18px; }
    .portrait-placeholder--photo { min-height: 460px; padding: 0 0 68px; }
    .portrait-placeholder--photo img { bottom: 68px; height: calc(100% - 68px); }
    .manifesto-quote { padding-left: 33px; }
    .manifesto-quote > span { left: 4px; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { min-height: 240px; }
    .values-grid article > span { margin-bottom: 45px; }
    .process-panel { margin-inline: auto; padding: 32px 24px; }
    .process-panel .button { width: 100%; }
    .construction-page { min-height: 66vh; }
    .construction-mark { min-height: 260px; }
    .blog-building { min-height: 0; padding: 22px 0; }
    .blog-building__inner { min-height: 430px; padding: 62px 25px 80px; }
    .blog-building__mark { right: 24px; bottom: 46px; width: 74px; height: 74px; opacity: .34; }
    .blog-building__icon { width: 38px; height: 38px; }
    .blog-building p:not(.eyebrow) { padding-right: 0; }
    .breadcrumbs { margin-bottom: 55px; }
    .service-hero { padding-bottom: 75px; }
    .service-hero__grid { gap: 45px; }
    .service-hero__copy .hero__actions { display: grid; }
    .service-price-card { padding: 30px 25px; }
    .price-breakdown__grid { grid-template-columns: 1fr; }
    .price-tier { min-height: 0; }
    .price-tier h3 { min-height: 0; }
    .price-tier__number { margin-bottom: 32px; }
    .included-list li { grid-template-columns: 43px 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { min-height: 255px; }
    .process-card > span { margin-bottom: 48px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-marker { min-height: 280px; }
    .detail-facts { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .form-panel { margin-inline: -14px; padding: 28px 20px; }
    .contact-direct a { grid-template-columns: 30px 1fr; gap: 3px 12px; }
    .contact-direct a > i { grid-row: 1 / 3; }
    .contact-direct a span, .contact-direct a strong { grid-column: 2; text-align: left; }
    .gallery-hero { padding: 65px 0 55px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 42px; }
    .gallery-toolbar { margin-inline: -14px; padding-inline: 14px; }
    .gallery-toolbar { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; }
    .gallery-item__image > span { transform: none; }
}

@media (max-width: 430px) {
    .container { width: min(calc(100% - 22px), var(--container)); }
    .brand { width: 170px; }
    .menu-toggle { min-width: 46px; padding-inline: 4px; }
    .hero__floating-card { width: 100%; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { border-left: 1px solid var(--line); }
    .footer-links--services { grid-template-columns: 1fr; }
    .project-placeholder__visual { aspect-ratio: 4/3; }
    .page-hero__aside .big-number { font-size: 5.5rem; }
}

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