:root {
    --navy-950: #061724;
    --navy-900: #071d2d;
    --navy-850: #0a2639;
    --navy-800: #0d3148;
    --navy-700: #174b68;
    --steel-700: #5f7180;
    --steel-500: #8999a6;
    --steel-300: #c4ced6;
    --steel-200: #dce3e8;
    --steel-100: #eef2f5;
    --surface: #f7f9fb;
    --white: #fff;
    --ink: #112330;
    --muted: #667784;
    --line: rgba(10, 38, 57, .13);
    --line-light: rgba(255, 255, 255, .14);
    --shadow: 0 24px 60px rgba(6, 23, 36, .12);
    --shadow-soft: 0 14px 34px rgba(6, 23, 36, .08);
    --radius: 10px;
    --container: 1180px;
    --ease: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.preview-bar { padding: 8px 20px; text-align: center; color: #eaf1f5; background: var(--navy-700); font-size: 12px; }
.preview-bar a { text-decoration: underline; text-underline-offset: 3px; }
.utility-bar { color: #c7d2d9; background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,.08); }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; }
.utility-links { display: flex; align-items: center; gap: 12px; }
.utility-links a:hover { color: var(--white); }
.utility-divider { width: 1px; height: 12px; background: rgba(255,255,255,.22); }
.utility-note { color: #9fafba; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 184px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { position: relative; color: #243744; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--navy-700); transition: right var(--ease); }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 6px; background: var(--steel-100); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle > span:not(.sr-only) { width: 21px; height: 2px; background: var(--navy-900); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid var(--navy-800); border-radius: 5px; color: var(--white); background: var(--navy-800); font-size: 13px; font-weight: 800; letter-spacing: .01em; transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease); }
.button:hover { transform: translateY(-2px); background: var(--navy-950); border-color: var(--navy-950); box-shadow: 0 12px 26px rgba(6,23,36,.18); }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-wide { width: 100%; }
.button-light { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--navy-950); background: #edf2f5; border-color: #edf2f5; }
.button-ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.55); }
.button-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.hero { position: relative; min-height: 600px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-media { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,17,27,.96) 0%, rgba(5,22,34,.85) 42%, rgba(7,29,45,.32) 73%, rgba(7,29,45,.08) 100%), url('../img/demo-project-house.svg'); background-position: center, center; background-size: cover; transform: scale(1.02); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 65%, rgba(6,23,36,.9)); }
.hero-inner { position: relative; z-index: 2; min-height: 512px; display: flex; align-items: center; padding-block: 62px 92px; }
.hero-copy { max-width: 710px; }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(44px, 5.8vw, 76px); line-height: 1.02; letter-spacing: -.05em; font-weight: 770; text-wrap: balance; }
.hero-copy > p { max-width: 600px; margin: 24px 0 0; color: #ced8df; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-bar { position: relative; z-index: 3; margin-top: -72px; min-height: 126px; display: grid; grid-template-columns: repeat(4, 1fr); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: 0 24px 50px rgba(3,16,25,.24); }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 24px; border-right: 1px solid var(--line-light); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: #e5edf2; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.trust-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-item div { display: grid; gap: 2px; }
.trust-item strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.trust-item small { color: #aebdc7; font-size: 11px; }

.section { padding: 86px 0; }
.section-heading { margin-bottom: 40px; }
.compact-heading, .project-heading { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: end; gap: 72px; }
.section-label { margin: 0 0 10px; color: var(--navy-700); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.section-label.light { color: #b7c5ce; }
.section-heading h2, .process-copy h2, .about-copy h2, .quote-intro h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; font-weight: 760; }
.section-heading > p, .compact-heading > p, .project-heading > p { margin: 0; color: var(--muted); font-size: 16px; }
.services-section { padding-top: 112px; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), opacity 500ms ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(13,49,72,.28); box-shadow: var(--shadow-soft); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--navy-800); border: 1px solid var(--line); border-radius: 7px; background: #f9fbfc; }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-index { color: #a1aeb7; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 24px 0 9px; font-size: 21px; line-height: 1.25; letter-spacing: -.02em; }
.service-card > p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card-footer { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 24px; }
.service-price { display: grid; gap: 1px; }
.service-price small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.service-price strong { color: var(--navy-900); font-size: 16px; }
.round-link { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-900); border: 1px solid var(--line); border-radius: 50%; font-size: 18px; transition: color var(--ease), background var(--ease), transform var(--ease); }
.round-link:hover { color: var(--white); background: var(--navy-800); transform: translateX(2px); }

.process-section { padding: 74px 0; color: var(--white); background: var(--navy-900); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; align-items: start; }
.process-copy p:not(.section-label) { max-width: 440px; margin: 20px 0 0; color: #aebdc7; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.process-steps > div { padding: 25px 25px 0 0; border-right: 1px solid var(--line-light); }
.process-steps > div + div { padding-left: 25px; }
.process-steps > div:last-child { border-right: 0; }
.process-steps span { color: #8fa5b3; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.process-steps strong { display: block; margin-top: 14px; font-size: 16px; }
.process-steps p { margin: 8px 0 0; color: #aebdc7; font-size: 13px; }

.projects-section { background: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.project-card { grid-column: span 4; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; transition: transform var(--ease), box-shadow var(--ease), opacity 500ms ease; }
.project-card:first-child { grid-column: span 8; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.project-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.project-card:first-child .project-image { aspect-ratio: 16 / 7.6; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project-card:hover .project-image img { transform: scale(1.035); }
.project-content { padding: 20px; }
.project-content span { color: var(--navy-700); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.project-content h3 { margin: 7px 0 6px; font-size: 20px; line-height: 1.25; }
.project-content p { margin: 0; color: var(--muted); font-size: 13px; }

.about-section { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: 76px; align-items: center; }
.about-media { position: relative; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; aspect-ratio: 4 / 3.25; object-fit: cover; }
.about-stamp { position: absolute; right: 18px; bottom: 18px; display: grid; min-width: 180px; padding: 17px 18px; color: var(--white); background: rgba(6,23,36,.92); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.about-stamp strong { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.about-stamp span { color: #aebdc7; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.about-copy .lead { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.quality-list { margin-top: 28px; border-top: 1px solid var(--line); }
.quality-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.quality-list > div > strong { color: #99a8b3; font-size: 11px; letter-spacing: .12em; }
.quality-list span { color: var(--muted); font-size: 14px; }
.quality-list b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14px; }

.quote-section { color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.quote-intro > p:not(.section-label) { max-width: 470px; margin: 20px 0 0; color: #b4c1ca; }
.contact-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line-light); }
.contact-list > * { display: grid; gap: 2px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.contact-list span { color: #91a5b3; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { font-size: 14px; }
.quote-form-wrap { padding: 28px; color: var(--ink); background: var(--white); border-radius: 8px; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-width: 0; padding: 12px 13px; color: var(--ink); background: #fbfcfd; border: 1px solid #ccd6dd; border-radius: 5px; outline: none; transition: border-color var(--ease), box-shadow var(--ease); }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(23,75,104,.10); }
.form-grid textarea { resize: vertical; }
.quote-form .button { margin-top: 16px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.alert { margin-bottom: 15px; padding: 12px 14px; border-radius: 5px; font-size: 13px; }
.alert-success { color: #1f6840; background: #e9f6ee; border: 1px solid #c8e8d4; }
.alert-info { color: #31556e; background: #edf5f9; border: 1px solid #d4e7f0; }
.alert-error { color: #8d2d2d; background: #fff0f0; border: 1px solid #f0cccc; }

.site-footer { color: #b7c4cd; background: #04131e; }
.footer-top { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 54px; padding-block: 58px; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 300px; margin: 18px 0 0; color: #91a1ac; font-size: 13px; }
.footer-column { display: grid; align-content: start; gap: 7px; font-size: 13px; }
.footer-column h3 { margin: 0 0 10px; color: var(--white); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.10); color: #7f909c; font-size: 11px; }

.reveal-item { opacity: 0; transform: translateY(16px); }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .compact-heading, .project-heading { grid-template-columns: 1fr; gap: 18px; }
    .process-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 44px; }
    .process-steps { max-width: 900px; }
    .project-card, .project-card:first-child { grid-column: span 6; }
    .project-card:first-child .project-image { aspect-ratio: 16 / 10; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-top > :last-child { grid-column: 2; }
}

@media (max-width: 780px) {
    html { scroll-padding-top: 76px; }
    .utility-note { display: none; }
    .utility-inner { justify-content: center; }
    .site-header { top: 0; }
    .header-inner { min-height: 68px; }
    .brand img { width: 158px; height: 50px; }
    .nav-toggle { display: inline-flex; }
    .main-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px 20px 22px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.button) { padding: 12px 3px; border-bottom: 1px solid var(--line); }
    .main-nav > a:not(.button)::after { display: none; }
    .main-nav .button { margin-top: 14px; }
    .hero { min-height: 560px; }
    .hero-inner { min-height: 460px; padding-block: 56px 100px; }
    .hero-media { background-image: linear-gradient(90deg, rgba(4,17,27,.96), rgba(5,22,34,.82)), url('../img/demo-project-house.svg'); }
    .hero h1 { font-size: clamp(42px, 12vw, 64px); }
    .trust-bar { margin-top: -58px; }
    .section { padding: 70px 0; }
    .services-section { padding-top: 92px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 270px; }
    .process-steps { grid-template-columns: 1fr; border-top: 0; }
    .process-steps > div, .process-steps > div + div { padding: 20px 0; border-right: 0; border-top: 1px solid var(--line-light); }
    .project-card, .project-card:first-child { grid-column: span 12; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid label.full { grid-column: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .utility-links { width: 100%; justify-content: space-between; gap: 8px; font-size: 11px; }
    .utility-divider { display: none; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .trust-bar { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line-light); }
    .trust-item:last-child { border-bottom: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
    .section-heading h2, .process-copy h2, .about-copy h2, .quote-intro h2 { font-size: 34px; }
    .quote-form-wrap { padding: 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* AR Nordic v3 — approved visual direction */
:root{--container:1260px;--radius:12px}
.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #dfe6eb;box-shadow:0 5px 18px rgba(6,23,36,.04)}
.header-inner{min-height:82px}.brand img{width:196px;height:62px}.main-nav{gap:31px}.main-nav>a:not(.button){font-size:12px;text-transform:uppercase;letter-spacing:.025em;color:#132633}.button-small{min-height:46px;padding-inline:24px;text-transform:uppercase;font-size:11px;letter-spacing:.03em}
.hero{min-height:590px}.hero-media{background-image:linear-gradient(90deg,rgba(3,14,23,.83) 0%,rgba(5,20,31,.64) 42%,rgba(5,20,31,.14) 78%,rgba(5,20,31,.04) 100%),url('../img/demo-project-house-v2.jpg');background-size:cover;background-position:center 46%;transform:scale(1.01)}
.hero-inner{min-height:500px;padding-block:56px 114px}.hero-copy{max-width:650px}.hero h1{font-size:clamp(42px,4.25vw,66px);line-height:1.08;letter-spacing:-.045em;text-transform:uppercase}.hero-copy>p{max-width:560px;font-size:17px;color:#f2f5f7}.hero-actions{margin-top:30px}.button-primary-light{background:#0b2a40;color:#fff;border-color:#d8e3ea}.button-primary-light:hover{background:#061724;color:#fff}.button-light{background:#fff;color:#071d2d;border-color:#fff}.button-light:hover{background:#f3f6f8;color:#071d2d}
.trust-bar{width:100%;max-width:none;margin-top:-74px;border-radius:0;box-shadow:none;background:linear-gradient(90deg,#071d2d,#082840);border-left:0;border-right:0;min-height:118px}.trust-item{padding:22px 30px}.trust-icon{border:0;width:45px;height:45px}.trust-item strong{font-size:12px}.trust-item small{font-size:10px;color:#cfdae0}
.services-section{padding:70px 0 76px;background:#fff}.services-intro-layout{display:grid;grid-template-columns:minmax(250px,.72fr) minmax(0,1.8fr);gap:56px;align-items:start}.services-intro-copy h2{margin:0;font-size:clamp(30px,3vw,43px);line-height:1.08;letter-spacing:-.035em}.services-intro-copy>p:not(.section-label){color:var(--muted);font-size:14px;margin:17px 0 24px}.button-outline{min-height:42px;background:#0b2a40;color:#fff;border-color:#0b2a40;font-size:11px;text-transform:uppercase}.services-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.service-card{min-height:230px;padding:22px 20px;border-radius:7px;box-shadow:0 8px 24px rgba(6,23,36,.05)}.service-icon{width:48px;height:48px;border:0;background:#f5f8fa}.service-index{display:none}.service-card h3{margin:18px 0 7px;font-size:16px;text-transform:uppercase;letter-spacing:-.01em}.service-card>p{font-size:12px;line-height:1.55}.service-card-footer{padding-top:16px}.service-read-more{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;color:#0d3148}.service-read-more span{padding-left:4px}
.process-section{padding:62px 0}.process-copy h2{font-size:clamp(30px,3.4vw,46px)}
.projects-section{padding:72px 0}.project-heading{grid-template-columns:1fr auto;align-items:end}.project-heading h2{font-size:clamp(30px,3vw,44px)}.project-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.project-card,.project-card:first-child{grid-column:auto;border:0;border-radius:6px;box-shadow:none}.project-card:first-child .project-image,.project-image{aspect-ratio:4/2.7;border-radius:6px}.project-content{padding:13px 0 0}.project-content p{display:none}.project-content h3{font-size:15px;margin:4px 0}.project-content span{font-size:9px;color:#71818d}
.about-section{padding:80px 0}.quote-section{padding:80px 0}.site-footer{background:#061724}.footer-top{padding-block:48px}.footer-brand img{filter:brightness(0) invert(1);opacity:.95}
@media(max-width:1100px){.services-intro-layout{grid-template-columns:1fr}.services-grid{grid-template-columns:repeat(2,1fr)}.project-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:780px){.header-inner{min-height:70px}.brand img{width:162px}.main-nav>a:not(.button){text-transform:none}.hero{min-height:560px}.hero-inner{min-height:475px;padding-bottom:112px}.trust-bar{width:min(calc(100% - 40px),var(--container));border-radius:8px;margin-top:-58px}.services-section{padding-top:90px}.services-grid{grid-template-columns:1fr 1fr}.project-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.hero h1{font-size:40px}.hero-copy>p{font-size:15px}.services-grid,.project-grid{grid-template-columns:1fr}.service-card{min-height:210px}.trust-bar{width:min(calc(100% - 28px),var(--container))}.project-heading{grid-template-columns:1fr}}
