:root {
  --ink: #111111;
  --slate: #242424;
  --muted: #6f706b;
  --warm: #e6e3de;
  --paper: #faf7f2;
  --paper-2: #f3f0ea;
  --lime: #a6e22e;
  --lime-dark: #83bd00;
  --violet: #5963ff;
  --line: rgba(17, 17, 17, .15);
  --radius: 22px;
  --container: min(1220px, calc(100% - 48px));
  --display: "Space Grotesk", "DM Sans", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.skip-link { position: fixed; left: 16px; top: -80px; padding: 10px 16px; background: var(--ink); color: white; z-index: 1000; }
.skip-link:focus { top: 16px; }

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  font: 600 10px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }
.site-header { position: relative; z-index: 100; min-height: 126px; }
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .nav {
  position: fixed;
  height: 74px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 22px;
  background: rgba(250, 247, 242, .8);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 18px 50px rgba(30,30,30,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand img { width: 148px; height: 62px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.button) { font: 600 12px/1 var(--display); text-transform: uppercase; letter-spacing: .08em; position: relative; }
.nav-links > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--lime); transition: right .25s ease; }
.nav-links > a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 0; transition: transform .25s ease; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  font: 700 12px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.button span { font-size: 17px; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,17,17,.13); }
.button:hover span { transform: translate(2px, -2px); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.button-outline { background: transparent; }
.button-outline:hover { background: var(--ink); color: white; }
.button-ghost { border-color: transparent; padding-inline: 8px; }
.button-ghost:hover { box-shadow: none; color: var(--lime-dark); }
.button-full { width: 100%; }

.hero { min-height: calc(100vh - 126px); padding-top: 78px; padding-bottom: 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .98fr 1.02fr; gap: 72px; align-items: center; min-height: 600px; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 12px; font: 600 11px/1.2 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 2px; background: var(--lime); }
.hero h1, .section-heading h2, .process-intro h2, .seo-title h2, .faq-intro h2, .contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { font-size: clamp(54px, 5.5vw, 88px); }
.hero h1 em { position: relative; font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 2px; right: 0; bottom: 4px; height: 8px; z-index: -1; background: var(--lime); opacity: .9; }
.hero-lead { max-width: 620px; margin: 30px 0; font-size: 18px; color: #42433f; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; padding: 18px 10px 0 0; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border-right: 0; padding-left: 15px; }
.hero-proof div:nth-child(2) { padding-left: 15px; }
.hero-proof strong { color: var(--lime-dark); font: 700 11px var(--display); }
.hero-proof span { font-size: 13px; }
.hero-visual { position: relative; min-width: 0; }
.glass-card { background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 30px 80px rgba(17,17,17,.11); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.visual-frame { position: relative; overflow: hidden; border-radius: 28px; min-height: 520px; }
.visual-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 61% center; transform: scale(1.25); }
.corner { position: absolute; width: 30px; height: 30px; border-color: var(--lime); border-style: solid; }
.corner-tl { top: 18px; left: 18px; border-width: 5px 0 0 5px; border-radius: 8px 0 0 0; }
.corner-br { bottom: 18px; right: 18px; border-width: 0 5px 5px 0; border-radius: 0 0 8px 0; }
.floating-card { position: absolute; border-radius: 16px; padding: 17px 20px; }
.floating-performance { right: -35px; bottom: 45px; width: 190px; }
.floating-performance span, .floating-services span { display: block; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.floating-performance strong { font: 600 21px var(--display); }
.mini-bars { height: 34px; margin-top: 10px; display: flex; align-items: flex-end; gap: 6px; }
.mini-bars i { width: 14px; background: var(--warm); }
.mini-bars i:nth-child(1){height:25%}.mini-bars i:nth-child(2){height:40%}.mini-bars i:nth-child(3){height:55%;background:#dcebbd}.mini-bars i:nth-child(4){height:76%;background:#c4ea7d}.mini-bars i:nth-child(5){height:100%;background:var(--lime)}
.floating-services { left: -42px; top: 45px; display: flex; align-items: center; gap: 12px; }
.floating-services b { font: 600 36px var(--display); color: var(--lime-dark); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .25; pointer-events: none; }
.glow-one { width: 420px; height: 420px; right: -180px; top: 80px; background: var(--lime); }
.glow-two { width: 260px; height: 260px; left: 30%; bottom: 0; background: var(--violet); opacity: .08; }
.client-strip { min-height: 92px; margin-top: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.client-strip span { color: var(--muted); font-size: 12px; }
.client-strip div { font: 600 11px var(--display); letter-spacing: .13em; }
.client-strip i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }

.services { background: var(--ink); color: white; overflow: hidden; }
.services::before { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -220px; background: radial-gradient(circle, rgba(166,226,46,.18), transparent 66%); }
.section-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 90px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .process-intro h2, .seo-title h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(42px, 4.3vw, 66px); }
.section-heading > p, .process-intro > p, .faq-intro > p, .contact-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.heading-light > p { color: #bdbdb7; }
.eyebrow-light { color: white; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #373737; border-radius: 18px; overflow: hidden; }
.service-card { position: relative; min-height: 490px; padding: 30px; border-right: 1px solid #373737; background: linear-gradient(150deg, rgba(255,255,255,.04), transparent 55%); transition: background .25s ease, transform .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: linear-gradient(150deg, rgba(166,226,46,.13), rgba(255,255,255,.03)); }
.service-number { color: #797971; font: 500 11px var(--display); letter-spacing: .12em; }
.service-icon { width: 68px; height: 68px; margin: 44px 0 28px; border-radius: 50%; overflow: hidden; border: 1px solid #4d4d4d; background: var(--paper); }
.service-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin: 0 0 18px; font: 600 24px/1.15 var(--display); letter-spacing: -.03em; }
.service-card p { color: #bdbdb7; font-size: 14px; }
.service-card ul { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid #373737; }
.service-card li { position: relative; padding: 8px 0 8px 15px; color: #deded9; font-size: 13px; }
.service-card li::before { content: ""; width: 5px; height: 5px; position: absolute; top: 16px; left: 0; background: var(--lime); }

.portfolio { background: var(--paper-2); }
.project-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 470px 360px; gap: 18px; }
.project { position: relative; overflow: hidden; border: 0; border-radius: var(--radius); padding: 0; text-align: left; cursor: pointer; background: #ddd; }
.project-wide { grid-column: 1; grid-row: 1; }
.project-tall { grid-column: 2; grid-row: 1 / span 2; }
.project:nth-child(3) { grid-column: 1; grid-row: 2; width: calc(50% - 9px); }
.project:nth-child(4) { grid-column: 1; grid-row: 2; width: calc(50% - 9px); justify-self: end; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.project-wide img { object-position: center; }
.project-tall img { object-position: top center; }
.project:nth-child(3) img { object-position: top center; }
.project:nth-child(4) img { object-position: center; }
.project-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(10,10,10,.84)); }
.project-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: white; display: grid; gap: 4px; }
.project-meta small { color: var(--lime); font: 600 10px var(--display); letter-spacing: .14em; }
.project-meta strong { max-width: 520px; font: 600 24px/1.15 var(--display); letter-spacing: -.03em; }
.project-meta i { margin-top: 8px; font-style: normal; font-size: 12px; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.project:hover img { transform: scale(1.045); }
.project:hover .project-meta i { opacity: 1; transform: none; }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 120px; }
.process-intro { position: sticky; top: 120px; height: max-content; }
.process-intro > p { margin-top: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 36px; margin-top: 32px; padding-bottom: 5px; border-bottom: 2px solid var(--lime); font-weight: 700; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 34px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list b { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; color: var(--lime-dark); font: 700 12px var(--display); }
.process-list h3 { margin: 2px 0 7px; font: 600 28px var(--display); letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); }

.packages { background: #edeae4; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; padding: 34px; background: rgba(255,255,255,.63); border: 1px solid rgba(17,17,17,.14); border-radius: var(--radius); display: flex; flex-direction: column; }
.price-card.featured { background: var(--ink); color: white; border-color: var(--ink); transform: translateY(-12px); box-shadow: 0 26px 65px rgba(17,17,17,.16); }
.popular { position: absolute; top: 0; right: 28px; transform: translateY(-50%); padding: 7px 13px; background: var(--lime); color: var(--ink); border-radius: 5px; font: 700 9px var(--display); letter-spacing: .15em; }
.price-top { display: flex; justify-content: space-between; align-items: center; }
.price-top span { padding: 5px 10px; border: 1px solid currentColor; border-radius: 5px; font: 600 10px var(--display); letter-spacing: .16em; }
.price-top b { color: var(--lime-dark); font: 700 12px var(--display); }
.price-card h3 { margin: 34px 0 0; font: 600 31px var(--display); letter-spacing: -.04em; }
.price { margin: 10px 0; color: var(--lime-dark); font: 600 46px var(--display); letter-spacing: -.05em; }
.price small { margin-right: 5px; color: var(--muted); font: 500 12px var(--body); letter-spacing: 0; }
.price-card.featured .price { color: var(--lime); }
.price-card > p:not(.price) { min-height: 78px; color: var(--muted); font-size: 14px; }
.price-card.featured > p:not(.price), .price-card.featured .price small { color: #bdbdb7; }
.price-card ul { flex: 1; list-style: none; padding: 20px 0; margin: 14px 0 24px; border-top: 1px solid var(--line); }
.price-card.featured ul { border-color: #3b3b3b; }
.price-card li { position: relative; padding: 8px 0 8px 24px; font-size: 14px; }
.price-card li::before { content: "↗"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 700; }
.price-card.featured .button-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.package-note { margin: 34px auto 0; text-align: center; max-width: 800px; color: var(--muted); }

.seo-content { background: var(--paper); }
.seo-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 120px; }
.seo-copy p { margin: 0 0 22px; color: #494a46; font-size: 17px; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.seo-tags span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.faq { padding-top: 0; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.15fr; gap: 120px; }
.faq-intro > p { margin-top: 22px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; padding: 26px 0; cursor: pointer; font: 600 19px/1.3 var(--display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--lime-dark); font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 50px 28px 0; color: var(--muted); }

.contact { background: var(--ink); color: white; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 580px; height: 580px; left: -240px; bottom: -250px; background: radial-gradient(circle, rgba(89,99,255,.2), transparent 66%); }
.contact-shell { display: grid; grid-template-columns: .9fr 1.05fr; gap: 95px; align-items: start; }
.contact-copy h2 { font-size: clamp(45px, 5vw, 76px); }
.contact-copy > p { margin-top: 28px; color: #c2c2bc; }
.contact-points { margin: 36px 0; border-top: 1px solid #383838; }
.contact-points div { display: flex; gap: 20px; padding: 13px 0; border-bottom: 1px solid #383838; font-size: 14px; }
.contact-points b { color: var(--lime); font: 700 11px var(--display); }
.email-link { display: inline-flex; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid var(--lime); font-weight: 600; }
.contact-form { padding: 34px; border-radius: var(--radius); background: rgba(255,255,255,.07); border-color: #3e3e3e; box-shadow: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #d6d6d0; font-size: 12px; }
.contact-form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: white; background: rgba(255,255,255,.06); border: 1px solid #454545; border-radius: 8px; padding: 14px; outline: none; }
.contact-form select option { color: var(--ink); background: white; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(166,226,46,.1); }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form .button-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.contact-form .button-primary:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { min-height: 22px; margin: 12px 0 0; text-align: center; font-size: 12px; }
.form-status.is-success { color: var(--lime); }
.form-status.is-error { color: #ff8f8f; }
.form-note { margin: 12px 0 0; text-align: center; color: #898982; font-size: 10px; }

.footer { padding: 70px 0 24px; background: #0c0c0c; color: white; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 54px; }
.footer-brand img { width: 170px; height: 82px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { color: #90908b; font-size: 14px; }
.footer-nav { display: flex; gap: 100px; }
.footer-nav div { display: grid; gap: 7px; align-content: start; }
.footer-nav span { margin-bottom: 8px; color: var(--lime); font: 600 9px var(--display); letter-spacing: .16em; }
.footer-nav a { color: #cfcfca; font-size: 14px; }
.footer-nav a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 22px; border-top: 1px solid #2c2c2c; color: #777772; font-size: 10px; }

.project-dialog { width: min(1040px, calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: var(--paper); color: var(--ink); }
.project-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.dialog-close { position: fixed; margin: 15px 0 0 calc(min(1040px, calc(100% - 30px)) - 60px); width: 42px; height: 42px; z-index: 3; border: 0; border-radius: 50%; background: var(--ink); color: white; cursor: pointer; font-size: 24px; }
.dialog-image { max-height: 68vh; overflow: auto; background: #e9e6e1; }
.dialog-image img { width: 100%; height: auto; }
.dialog-copy { padding: 28px 32px 34px; }
.dialog-copy p { margin: 0 0 6px; color: var(--lime-dark); font: 700 9px var(--display); letter-spacing: .15em; }
.dialog-copy h2 { margin: 0 0 8px; font: 600 30px var(--display); letter-spacing: -.04em; }
.dialog-copy span { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 820px; }
  .visual-frame { min-height: 460px; }
  .visual-frame img { min-height: 460px; transform: scale(1.08); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card { border-bottom: 1px solid #373737; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: 0; }
  .price-card { padding: 28px 24px; }
  .process-grid, .seo-grid, .faq-grid, .contact-shell { gap: 70px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .announcement span:nth-of-type(n+2), .announcement i:nth-of-type(n+1) { display: none; }
  .site-header { min-height: 112px; }
  .nav { height: 78px; }
  .site-header.is-scrolled .nav { height: 68px; }
  .brand img { width: 130px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; padding: 120px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; background: rgba(250,247,242,.97); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform .3s ease; }
  .nav-links.is-open { transform: none; }
  .nav-links > a:not(.button) { font-size: 26px; letter-spacing: -.02em; text-transform: none; }
  .hero { padding-top: 52px; }
  .hero-grid { min-height: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .process-grid, .seo-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; gap: 60px; }
  .process-intro { position: static; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 420px 300px; }
  .project-wide { grid-column: 1 / span 2; grid-row: 1; }
  .project-tall { grid-column: 1; grid-row: 2; }
  .project:nth-child(3) { grid-column: 2; grid-row: 2; width: 100%; }
  .project:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; width: 100%; }
  .price-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card > p:not(.price) { min-height: 0; }
  .contact-copy h2 { font-size: 54px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 68px 0; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div, .hero-proof div:nth-child(2), .hero-proof div:last-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; gap: 15px; }
  .visual-frame, .visual-frame img { min-height: 380px; }
  .visual-frame img { transform: scale(1.45); object-position: 63% center; }
  .floating-services { left: 12px; top: 14px; }
  .floating-performance { right: 12px; bottom: 14px; }
  .client-strip { justify-content: flex-start; overflow-x: auto; padding: 0 4px; }
  .client-strip > * { flex: 0 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid #373737 !important; }
  .service-card:last-child { border-bottom: 0 !important; }
  .service-icon { margin: 28px 0 20px; }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 350px); }
  .project, .project-wide, .project-tall, .project:nth-child(3), .project:nth-child(4) { grid-column: 1; width: 100%; }
  .project-wide { grid-row: 1; }.project-tall{grid-row:2}.project:nth-child(3){grid-row:3}.project:nth-child(4){grid-row:4}
  .process-list li { grid-template-columns: 60px 1fr; gap: 14px; }
  .process-list b { width: 45px; height: 45px; }
  .price-card { padding: 26px 22px; }
  .faq-list summary { font-size: 17px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .contact-copy h2 { font-size: 46px; }
  .email-link { font-size: 14px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-nav { gap: 46px; }
  .dialog-copy { padding: 24px 20px 28px; }
}

@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; }
}
