:root {
  --navy: #07203e;
  --navy-2: #0b2c50;
  --blue: #3d95c2;
  --sky: #7bc5e5;
  --coral: #f24d55;
  --pink: #f32260;
  --cream: #f5f2eb;
  --paper: #fff;
  --ink: #11263a;
  --muted: #657383;
  --line: rgba(7, 32, 62, .13);
  --shadow: 0 28px 80px rgba(7, 32, 62, .16);
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; scroll-margin-top: 100px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 500; padding: .75rem 1rem; color: var(--paper); background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.25rem; color: var(--paper); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 3px; border-radius: 4px; background: var(--coral); }
.eyebrow-dark { color: var(--navy); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-height: 54px; padding: .85rem 1.35rem; border: 2px solid var(--coral); border-radius: 999px; color: var(--paper); background: var(--coral); font-size: .88rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); border-color: #db3640; background: #db3640; box-shadow: 0 12px 30px rgba(242, 77, 85, .3); }
.button-small { min-height: 44px; padding: .6rem 1rem; font-size: .78rem; }
.button-ghost { border-color: rgba(255,255,255,.45); background: transparent; }
.button-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.1); box-shadow: none; }
.button-light { color: var(--navy); border-color: var(--paper); background: var(--paper); }
.button-light:hover { color: var(--paper); border-color: var(--coral); background: var(--coral); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); transition: box-shadow .2s, border-color .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(7,32,62,.08); }
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 2rem; }
.brand { width: 174px; flex: 0 0 174px; display: block; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.brand img, .about-mark img, .footer-brand img, .error-brand img { width: 100%; height: auto; aspect-ratio: 1280 / 751; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 1.6rem; margin-left: auto; }
.main-nav a { color: #35485c; font-size: .8rem; font-weight: 700; text-decoration: none; transition: color .2s; }
.main-nav a:hover { color: var(--coral); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: var(--navy); font-size: .78rem; font-weight: 800; text-decoration: none; }
.nav-toggle { width: 46px; height: 46px; display: none; padding: 10px; border: 0; color: var(--navy); background: transparent; cursor: pointer; }
.nav-toggle span { width: 100%; height: 2px; display: block; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: calc(100vh - 92px); display: grid; align-items: center; overflow: hidden; color: var(--paper); background: var(--navy); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, #000, transparent 70%); pointer-events: none; }
.paint-sweep { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.paint-sweep-one { width: 520px; height: 220px; right: -100px; top: -110px; border: 54px solid rgba(61,149,194,.24); transform: rotate(-16deg); }
.paint-sweep-two { width: 360px; height: 160px; left: -190px; bottom: -70px; border: 40px solid rgba(242,77,85,.16); transform: rotate(18deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; padding-top: 72px; padding-bottom: 82px; }
.hero-grid > * { min-width: 0; }
.hero-copy { max-width: 650px; }
.hero h1 { max-width: 680px; margin-bottom: 1.55rem; font-size: clamp(4rem, 6.8vw, 7.2rem); }
.hero h1 em { color: var(--sky); font-weight: 400; }
.hero-lede { max-width: 600px; margin-bottom: 1.75rem; color: rgba(255,255,255,.73); font-size: clamp(1.05rem, 1.8vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin: 2.5rem 0 0; }
.hero-facts div { min-width: 130px; padding: 0 1.3rem; border-left: 1px solid rgba(255,255,255,.2); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { color: rgba(255,255,255,.47); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-facts dd { margin: .22rem 0 0; color: var(--paper); font-size: .9rem; font-weight: 800; }

.hero-visual { position: relative; min-height: 600px; }
.hero-photo-main { position: absolute; width: 88%; height: 67%; right: 0; top: 8%; overflow: hidden; border: 8px solid var(--paper); border-radius: 120px 18px 18px 18px; box-shadow: 0 30px 80px rgba(0,0,0,.33); transform: rotate(1.5deg); }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-label { position: absolute; right: 1rem; bottom: 1rem; padding: .55rem .8rem; color: var(--navy); background: rgba(255,255,255,.94); border-radius: 999px; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.photo-label b { margin-inline: .3rem; color: var(--coral); }
.hero-photo-small { position: absolute; width: 34%; height: 41%; left: 0; bottom: 4%; overflow: hidden; border: 7px solid var(--paper); border-radius: 12px 70px 12px 12px; box-shadow: 0 22px 55px rgba(0,0,0,.35); transform: rotate(-4deg); }
.hero-photo-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; right: -22px; bottom: 8%; width: 142px; height: 142px; display: grid; align-content: center; justify-items: center; color: var(--navy); background: var(--sky); border-radius: 50%; box-shadow: 0 18px 44px rgba(0,0,0,.22); transform: rotate(7deg); }
.hero-stamp strong, .hero-stamp span { display: block; line-height: 1.15; }
.hero-stamp strong { font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; }
.hero-stamp span { margin-top: .2rem; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.swatches { position: absolute; left: 29%; top: 1%; display: flex; gap: .45rem; }
.swatches i { width: 18px; height: 54px; display: block; border-radius: 10px; background: var(--coral); transform: rotate(24deg); }
.swatches i:nth-child(2) { background: var(--sky); }
.swatches i:nth-child(3) { background: var(--paper); }

.service-strip { color: var(--paper); background: var(--coral); }
.service-strip-inner { min-height: 78px; display: flex; align-items: center; gap: 2rem; }
.service-strip strong { flex: 0 0 auto; font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.city-list { display: flex; align-items: center; gap: 1.4rem; overflow-x: auto; scrollbar-width: none; }
.city-list::-webkit-scrollbar { display: none; }
.city-list span { position: relative; flex: 0 0 auto; font-size: .7rem; font-weight: 800; letter-spacing: .05em; }
.city-list span:not(:last-child)::after { content: "•"; position: absolute; right: -.85rem; color: rgba(255,255,255,.45); }

.services { background: var(--cream); }
.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; margin-bottom: 3.2rem; }
.section-intro h2, .work-heading h2, .process-heading h2 { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(3rem, 5.2vw, 5.3rem); }
.section-intro > p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card { min-height: 360px; display: flex; flex-direction: column; padding: 1.55rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); transition: transform .2s, box-shadow .2s, border-color .2s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(61,149,194,.4); box-shadow: var(--shadow); }
.service-number { align-self: flex-end; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.service-card svg { width: 52px; height: 52px; margin-top: 1rem; fill: none; stroke: var(--coral); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: auto 0 .8rem; color: var(--navy); font-size: 1.25rem; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.service-card-accent { color: var(--paper); border-color: var(--navy); background: var(--navy); }
.service-card-accent .service-number, .service-card-accent p { color: rgba(255,255,255,.64); }
.service-card-accent h3 { color: var(--paper); }
.service-card-accent svg { stroke: var(--sky); }

.work { color: var(--paper); background: var(--navy); }
.work-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.work-heading h2 { color: var(--paper); }
.work-heading > p { margin: 0 0 .5rem; color: rgba(255,255,255,.58); }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 1rem; }
.project { position: relative; grid-column: span 4; margin: 0; overflow: hidden; border-radius: 16px; background: var(--navy-2); }
.project-wide { grid-column: span 8; }
.project-tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project:hover img { transform: scale(1.035); }
.project::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7,32,62,.85)); pointer-events: none; }
.project figcaption { position: absolute; z-index: 2; left: 1rem; bottom: .9rem; color: var(--paper); }
.project figcaption span, .project figcaption strong { display: block; }
.project figcaption span { color: var(--sky); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project figcaption strong { margin-top: .18rem; font-size: .88rem; }

.testimonials { position: relative; overflow: hidden; background: var(--sky); }
.testimonials::after { position: absolute; right: -9rem; bottom: -11rem; width: 28rem; height: 28rem; border: 1px solid rgba(18,45,61,.12); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(255,255,255,.2), 0 0 0 6rem rgba(255,255,255,.13); content: ""; pointer-events: none; }
.testimonials-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(18rem,.75fr); gap: clamp(2rem,7vw,7rem); align-items: end; margin-bottom: 2.8rem; }
.testimonials-heading h2 { margin: 0; color: var(--navy); font-size: clamp(3rem,5.2vw,5.3rem); }
.testimonials-intro > p { margin: 0 0 1rem; color: var(--muted); }
.review-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy); font-size: .78rem; font-weight: 800; text-underline-offset: 5px; }
.review-link:hover { color: var(--coral); }
.testimonial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.25fr) minmax(0,.97fr); gap: 1rem; }
.testimonial-card { display: flex; min-height: 288px; flex-direction: column; padding: clamp(1.6rem,3vw,2.3rem); border: 1px solid rgba(18,45,61,.09); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow-soft); }
.quote-mark { height: 3.6rem; color: var(--coral); font-family: "DM Serif Display", Georgia, serif; font-size: 5rem; line-height: 1; }
.testimonial-card blockquote { margin: auto 0 1.8rem; color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.35rem,2vw,1.7rem); line-height: 1.3; }
.testimonial-author { margin: 0; color: var(--navy); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.about { position: relative; overflow: hidden; background: var(--paper); }
.about::before { content: ""; position: absolute; width: 530px; height: 530px; left: -270px; top: 80px; border: 70px solid rgba(61,149,194,.09); border-radius: 50%; }
.about-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.about .eyebrow { color: var(--navy); }
.about h2 { max-width: 700px; margin-bottom: 1.5rem; color: var(--navy); font-size: clamp(3rem, 5.5vw, 5.5rem); }
.about-lede { color: var(--ink); font-size: 1.12rem; font-weight: 600; }
.about-story > p:not(.eyebrow):not(.signature) { max-width: 680px; color: var(--muted); }
.about blockquote { margin: 2rem 0; padding: .4rem 0 .4rem 1.3rem; border-left: 4px solid var(--coral); color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.3rem); font-style: italic; line-height: 1.15; }
.signature { color: var(--navy); font-weight: 800; }
.signature span { display: block; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-panel { overflow: hidden; border-radius: 24px; color: var(--paper); background: var(--navy); box-shadow: var(--shadow); }
.about-mark { display: grid; place-items: center; min-height: 275px; padding: 2.2rem; background: var(--cream); }
.about-mark img { width: min(100%, 360px); }
.about-points { padding: .6rem 1.5rem 1.4rem; }
.about-points > div { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.about-points > div:last-child { border-bottom: 0; }
.about-points span { color: var(--coral); font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.about-points p { margin: 0; color: rgba(255,255,255,.62); font-size: .78rem; }
.about-points strong { display: block; margin-bottom: .2rem; color: var(--paper); font-size: .9rem; }

.process { background: var(--cream); }
.process-heading { max-width: 850px; margin-bottom: 3rem; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-list li { min-height: 230px; padding: 1.5rem 1.4rem; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list > li > span { color: var(--coral); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.process-list div { margin-top: 4rem; }
.process-list h3 { margin-bottom: .55rem; color: var(--navy); font-size: 1rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .8rem; }

.contact { position: relative; overflow: hidden; color: var(--paper); background: var(--coral); }
.contact::before { content: ""; position: absolute; width: 430px; height: 430px; right: -160px; bottom: -240px; border: 60px solid rgba(255,255,255,.12); border-radius: 50%; }
.paint-drip { position: absolute; inset: 0 auto auto 0; width: 36%; height: 28px; background: var(--navy); border-radius: 0 0 80% 0; }
.paint-drip::before, .paint-drip::after { content: ""; position: absolute; top: 20px; width: 18px; background: var(--navy); border-radius: 0 0 20px 20px; }
.paint-drip::before { right: 25%; height: 42px; }
.paint-drip::after { right: 12%; height: 25px; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.contact h2 { max-width: 650px; margin-bottom: 1.4rem; font-size: clamp(3.3rem, 6vw, 6.2rem); }
.contact-copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 2rem; }
.text-link { color: var(--paper); font-size: .78rem; font-weight: 800; text-underline-offset: 5px; }
.contact-card { padding: 2rem; color: var(--paper); background: var(--navy); border-radius: 22px; box-shadow: 0 28px 70px rgba(7,32,62,.24); }
.contact-card-label { margin-bottom: .5rem; color: var(--sky); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card > p:not(.contact-card-label) { color: rgba(255,255,255,.7); font-size: .88rem; }
.contact-card hr { height: 1px; margin: 1.5rem 0; border: 0; background: rgba(255,255,255,.14); }
.contact-card dl { margin: 0; }
.contact-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 0; }
.contact-card dt { color: rgba(255,255,255,.46); font-size: .68rem; }
.contact-card dd { margin: 0; font-size: .78rem; font-weight: 700; text-align: right; }
.facebook-link { display: flex; align-items: center; gap: .6rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.14); color: var(--paper); font-size: .72rem; font-weight: 700; text-decoration: none; }
.facebook-link svg { width: 24px; height: 24px; fill: var(--sky); }

.site-footer { color: rgba(255,255,255,.62); background: #041428; }
.footer-main { min-height: 220px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; align-items: center; }
.footer-brand { width: 190px; display: block; filter: brightness(0) invert(1); opacity: .92; }
.footer-main > p { margin: 0; font-size: .78rem; }
.footer-main nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 1.2rem; }
.footer-main nav a { color: var(--paper); font-size: .72rem; font-weight: 700; text-decoration: none; }
.footer-bottom { min-height: 58px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); font-size: .64rem; }
.footer-bottom a { color: var(--paper); font-weight: 800; text-decoration: none; }

.error-page { min-height: 100vh; display: flex; flex-direction: column; color: var(--paper); background: var(--navy); }
.error-header { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.error-brand { width: 180px; display: block; filter: brightness(0) invert(1); }
.error-main { flex: 1; display: grid; place-items: center; padding: 80px 0; }
.error-card { max-width: 820px; text-align: center; }
.error-card h1 { margin-bottom: 1.2rem; font-size: clamp(4rem, 10vw, 8rem); }
.error-card > p:not(.eyebrow) { max-width: 570px; margin: 0 auto 2rem; color: rgba(255,255,255,.68); }
.error-card .eyebrow { justify-content: center; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .header-actions .header-phone { display: none; }
  .main-nav { gap: 1.1rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-visual { min-height: 520px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 300px; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding: 82px 0; }
  .header-inner { min-height: 82px; }
  .brand { width: 145px; flex-basis: 145px; }
  .main-nav { position: fixed; inset: 82px 0 auto; display: none; padding: 1.5rem 16px 2rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 40px rgba(7,32,62,.12); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: .45rem 0; color: var(--navy); font-size: 1rem; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .contact-grid, .testimonials-heading { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 60px; padding-bottom: 70px; }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; }
  .section-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .project, .project-wide { grid-column: span 1; }
  .project-tall { grid-row: span 2; }
  .about-panel { width: min(100%, 620px); margin-inline: auto; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-left: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 2.5rem 0; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 560px) {
  .header-actions .button { display: none; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.4rem); }
  .hero-visual { min-height: 410px; }
  .hero-photo-main { width: 94%; height: 66%; border-width: 5px; border-radius: 65px 12px 12px; }
  .hero-photo-small { width: 36%; height: 39%; border-width: 5px; }
  .hero-stamp { width: 105px; height: 105px; right: -6px; }
  .hero-stamp strong { font-size: 1rem; }
  .hero-stamp span { font-size: .54rem; }
  .hero-facts div { min-width: 33.333%; padding-inline: .7rem; }
  .service-strip-inner { display: block; padding: 1rem 0; }
  .service-strip strong { display: block; margin-bottom: .6rem; }
  .service-grid, .project-grid, .process-list { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .work-heading { display: block; }
  .work-heading > p { margin-top: 1rem; }
  .project, .project-wide { grid-column: auto; }
  .project-tall { grid-row: auto; }
  .project-grid { grid-auto-rows: 300px; }
  .project:nth-child(2), .project:nth-child(4) { height: 420px; }
  .process-list li, .process-list li:nth-child(3) { min-height: 190px; border-left: 1px solid var(--line); border-bottom: 0; }
  .process-list div { margin-top: 2.5rem; }
  .contact-actions { align-items: stretch; }
  .contact-actions .button { width: 100%; }
  .contact-card { padding: 1.4rem; }
  .contact-card dl div { display: block; }
  .contact-card dd { margin-top: .2rem; text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { grid-column: auto; }
  .footer-bottom { display: grid; gap: .5rem; padding: 1rem 0; }
}

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