
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --yellow: #f4df00;
  --yellow-soft: #fff46a;
  --ink: #101110;
  --ink-2: #181a18;
  --paper: #f4f3ee;
  --white: #ffffff;
  --stone: #c7c5bd;
  --muted: #777a74;
  --line: rgba(16, 17, 16, .14);
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(16, 17, 16, .12);
  --container: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--yellow); color: var(--ink); padding: 12px 18px; border-radius: 0 0 10px 10px; font-weight: 800; }
.skip-link:focus { top: 0; }

.utility { background: var(--yellow); color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.utility .container { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-links { display: flex; gap: 22px; align-items: center; }
.utility a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header { position: absolute; top: 36px; left: 0; width: 100%; z-index: 100; color: var(--white); }
.site-header.is-sticky { position: fixed; top: 0; color: var(--ink); background: rgba(244, 243, 238, .94); backdrop-filter: blur(18px); box-shadow: 0 10px 30px rgba(16,17,16,.08); animation: slideDown .28s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 174px; color: currentColor; }
.brand svg { width: 100%; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.12); }
.site-header.is-sticky .nav-link:hover, .site-header.is-sticky .nav-link.active { background: rgba(16,17,16,.08); }
.nav-cta { padding: 13px 18px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,223,0,.25); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--yellow); color: var(--ink); align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; width: 20px; height: 2px; background: currentColor; position: absolute; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: rotate(-45deg); }

.hero { position: relative; min-height: 780px; color: var(--white); background: #191b19; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.08); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,7,.91) 0%, rgba(7,8,7,.58) 50%, rgba(7,8,7,.18) 100%), linear-gradient(0deg, rgba(7,8,7,.62) 0%, transparent 55%); }
.hero-grid { position: relative; z-index: 2; padding: 190px 0 86px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .55fr); gap: 90px; align-items: end; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.eyebrow::before { content: ''; width: 32px; height: 3px; background: var(--yellow); border-radius: 99px; }
.hero h1, .page-hero h1, .display { margin: 0; font-family: 'Space Grotesk', Arial, sans-serif; font-size: clamp(50px, 7vw, 98px); line-height: .98; letter-spacing: -.055em; max-width: 850px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-copy { margin: 28px 0 0; max-width: 650px; font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.78); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(244,223,0,.22); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.05); backdrop-filter: blur(12px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { border-color: var(--line); }
.hero-panel { border: 1px solid rgba(255,255,255,.2); background: rgba(15,16,15,.5); backdrop-filter: blur(16px); border-radius: var(--radius); padding: 28px; }
.hero-panel strong { display: block; margin-bottom: 8px; font-family: 'Space Grotesk'; font-size: 24px; }
.hero-panel p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
.hero-panel-list { display: grid; gap: 14px; margin-top: 26px; }
.hero-panel-item { display: flex; gap: 12px; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; font-weight: 700; }
.check { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 13px; }
.hero-corner { position: absolute; right: -90px; bottom: -90px; width: 260px; height: 260px; border: 46px solid var(--yellow); border-radius: 50%; opacity: .92; z-index: 2; }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 122px; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; justify-content: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: 'Space Grotesk'; font-size: 25px; letter-spacing: -.03em; }
.trust-item span { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 13px; }

.section { padding: 112px 0; }
.section-tight { padding: 82px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-yellow { background: var(--yellow); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-head h2, .title { margin: 0; font-family: 'Space Grotesk'; font-size: clamp(38px, 5vw, 66px); line-height: 1.03; letter-spacing: -.045em; }
.section-head p { margin: 0; max-width: 660px; color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.62); }
.kicker { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.section-dark .kicker { color: var(--yellow); }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-card { min-height: 390px; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); isolation: isolate; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,8,.85), rgba(8,9,8,.05) 65%); z-index: -1; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.service-card:hover img { transform: scale(1.045); }
.service-card-content { min-height: 390px; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; }
.service-number { position: absolute; right: 26px; top: 24px; width: 50px; height: 50px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); border-radius: 50%; font-family: 'Space Grotesk'; font-weight: 800; }
.service-card h3 { margin: 0; font-family: 'Space Grotesk'; font-size: 32px; letter-spacing: -.04em; }
.service-card p { max-width: 520px; margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }
.card-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 20px; font-size: 13px; font-weight: 800; color: var(--yellow); }
.card-link span { transition: transform .2s ease; }
.service-card:hover .card-link span { transform: translateX(4px); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.split-media { position: relative; min-height: 610px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-badge { position: absolute; right: -26px; bottom: 46px; width: 175px; min-height: 175px; z-index: 2; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 24px; font-family: 'Space Grotesk'; font-weight: 800; line-height: 1.1; transform: rotate(-8deg); }
.split-copy h2 { margin: 12px 0 24px; font-family: 'Space Grotesk'; font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.045em; }
.split-copy p { margin: 0 0 18px; color: var(--muted); }
.feature-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); font-weight: 700; }

.projects-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 310px; gap: 16px; }
.project-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: #333; color: white; }
.project-card:first-child { grid-row: span 2; }
.project-card:nth-child(4) { grid-column: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-overlay { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(0deg, rgba(7,8,7,.78), transparent 62%); }
.project-tag { width: fit-content; margin-bottom: 8px; padding: 6px 10px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.project-card h3 { margin: 0; font-family: 'Space Grotesk'; font-size: 23px; letter-spacing: -.03em; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.process-step { position: relative; padding: 34px 28px 28px 0; border-right: 1px solid rgba(255,255,255,.18); counter-increment: steps; }
.process-step:not(:first-child) { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: '0' counter(steps); display: block; color: var(--yellow); font-family: 'Space Grotesk'; font-size: 13px; font-weight: 800; margin-bottom: 42px; }
.process-step h3 { margin: 0 0 12px; font-family: 'Space Grotesk'; font-size: 24px; }
.process-step p { margin: 0; color: rgba(255,255,255,.56); font-size: 14px; }

.cta-band { position: relative; overflow: hidden; }
.cta-grid { min-height: 390px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center; }
.cta-grid h2 { margin: 0; max-width: 800px; font-family: 'Space Grotesk'; font-size: clamp(45px, 6vw, 78px); line-height: .98; letter-spacing: -.05em; }
.cta-grid p { margin: 22px 0 0; max-width: 680px; font-weight: 600; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta-ring { position: absolute; right: -120px; top: -135px; width: 410px; height: 410px; border-radius: 50%; border: 68px solid rgba(16,17,16,.08); }

.jobs-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.jobs-list { display: grid; }
.job-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.job-row:last-child { border-bottom: 1px solid var(--line); }
.job-row h3 { margin: 0; font-family: 'Space Grotesk'; font-size: 22px; }
.job-row span { color: var(--muted); font-size: 13px; }
.job-arrow { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); transition: transform .2s ease; }
.job-row:hover .job-arrow { transform: translateX(4px); }

.page-hero { position: relative; min-height: 575px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.1); }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,7,.9), rgba(7,8,7,.38)), linear-gradient(0deg, rgba(7,8,7,.68), transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; padding: 190px 0 72px; }
.page-hero p { margin: 24px 0 0; max-width: 680px; color: rgba(255,255,255,.68); font-size: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumb a:hover { color: var(--yellow); }

.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 58px 0; border-top: 1px solid var(--line); }
.service-detail:first-child { border-top: 0; padding-top: 0; }
.service-detail-index { font-family: 'Space Grotesk'; font-size: 14px; color: var(--muted); }
.service-detail h2 { margin: 0 0 18px; font-family: 'Space Grotesk'; font-size: clamp(35px, 4vw, 52px); line-height: 1.02; letter-spacing: -.04em; }
.service-detail p { margin: 0 0 16px; color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }

.gallery-tools { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 36px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 15px; font-size: 13px; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery .project-card { min-height: 500px; }
.gallery .project-card:nth-child(3n) { grid-column: span 2; min-height: 590px; }
.project-card[hidden] { display: none; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.value-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; font-weight: 900; }
.value-card h3 { margin: 32px 0 10px; font-family: 'Space Grotesk'; font-size: 24px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.stat { padding: 48px 34px; background: var(--ink); }
.stat strong { display: block; font-family: 'Space Grotesk'; font-size: 50px; color: var(--yellow); letter-spacing: -.04em; }
.stat span { color: rgba(255,255,255,.58); }

.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.job-card { padding: 30px; min-height: 250px; display: flex; flex-direction: column; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.job-card .job-type { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.job-card h2 { margin: 28px 0 12px; font-family: 'Space Grotesk'; font-size: 28px; letter-spacing: -.035em; }
.job-card p { margin: 0; color: var(--muted); font-size: 14px; }
.job-card .card-link { margin-top: auto; color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-details { display: grid; gap: 28px; }
.contact-block { padding-top: 22px; border-top: 1px solid var(--line); }
.contact-block h3 { margin: 0 0 8px; font-family: 'Space Grotesk'; font-size: 20px; }
.contact-block p, .contact-block a { margin: 0; color: var(--muted); }
.contact-block a:hover { color: var(--ink); text-decoration: underline; }
.form-card { padding: 38px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #faf9f5; padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(244,223,0,.45); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.form-success { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #e8f5e8; color: #164c25; font-weight: 700; }
.form-success.show { display: block; }
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.location-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--radius); background: linear-gradient(145deg, #343633, #131413); color: var(--white); overflow: hidden; position: relative; }
.location-card::before { content: ''; position: absolute; right: -70px; top: -60px; width: 220px; height: 220px; border: 35px solid var(--yellow); border-radius: 50%; opacity: .65; }
.location-card h3 { margin: 0 0 8px; font-family: 'Space Grotesk'; font-size: 32px; }
.location-card p { margin: 0; color: rgba(255,255,255,.62); }
.location-card a { margin-top: 26px; color: var(--yellow); font-size: 13px; font-weight: 800; }

.legal { max-width: 900px; }
.legal h2 { margin-top: 48px; font-family: 'Space Grotesk'; font-size: 28px; }
.legal p, .legal li { color: var(--muted); }
.notice { padding: 18px 20px; border-radius: 14px; background: #fff8c5; border: 1px solid #eadb4c; }

.site-footer { background: #090a09; color: var(--white); padding: 84px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.2fr .7fr .7fr .8fr; gap: 52px; padding-bottom: 62px; }
.footer-brand { width: 185px; color: var(--white); }
.footer-intro { margin-top: 25px; max-width: 360px; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-title { margin: 0 0 18px; color: rgba(255,255,255,.4); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-links a:hover { color: var(--yellow); }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.social { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; font-size: 11px; font-weight: 800; }
.social:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-menu { position: fixed; inset: 0; z-index: -1; padding: 130px 28px 40px; flex-direction: column; align-items: stretch; background: var(--ink); color: var(--white); transform: translateX(100%); transition: transform .3s ease; }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 23px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; }
  .nav-link:hover, .nav-link.active { background: transparent; color: var(--yellow); }
  .nav-cta { margin-top: 18px; text-align: center; font-size: 16px; padding: 16px; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 2; }
  .site-header.is-sticky .nav-menu { background: var(--ink); color: var(--white); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-panel { max-width: 540px; }
  .section-head, .split, .jobs-preview, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .section-head { gap: 24px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:first-child { grid-row: span 1; }
  .project-card:nth-child(4) { grid-column: span 1; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .cta-grid { grid-template-columns: 1fr; padding: 70px 0; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1240px); --radius: 20px; }
  .utility .container { min-height: 34px; justify-content: center; }
  .utility-links a:not(:first-child), .utility-note { display: none; }
  .site-header { top: 34px; }
  .nav { min-height: 78px; }
  .brand { width: 145px; }
  .site-header.is-sticky { top: 0; }
  .hero { min-height: 740px; }
  .hero-grid { padding: 154px 0 60px; }
  .hero h1, .page-hero h1 { font-size: clamp(46px, 15vw, 72px); }
  .hero-copy { font-size: 17px; }
  .hero-panel { display: none; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-corner { width: 170px; height: 170px; border-width: 30px; right: -75px; bottom: -72px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 104px; padding: 22px 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:nth-child(2) { border-right: 0; }
  .section, .section-tight { padding: 76px 0; }
  .section-head { margin-bottom: 36px; }
  .services-grid, .values-grid, .job-grid, .locations, .form-grid, .gallery { grid-template-columns: 1fr; }
  .service-card, .service-card-content { min-height: 360px; }
  .service-card-content { padding: 25px; }
  .split { gap: 42px; }
  .split-media { min-height: 440px; }
  .split-badge { right: -12px; width: 140px; min-height: 140px; font-size: 14px; }
  .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .gallery .project-card, .gallery .project-card:nth-child(3n) { grid-column: span 1; min-height: 420px; }
  .process { grid-template-columns: 1fr; }
  .process-step, .process-step:not(:first-child) { padding: 28px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .process-step::before { margin-bottom: 20px; }
  .jobs-preview { gap: 42px; }
  .page-hero { min-height: 520px; }
  .page-hero-inner { padding: 160px 0 60px; }
  .service-detail { gap: 18px; padding: 44px 0; }
  .gallery-tools { align-items: flex-start; flex-direction: column; }
  .stats { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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