:root {
  --ink: #252824;
  --muted: #697069;
  --cream: #f7f4ee;
  --cream-deep: #eee8dc;
  --white: #fff;
  --gold: #b58a2a;
  --gold-dark: #8c6818;
  --forest: #26362d;
  --line: rgba(37, 40, 36, 0.14);
  --shadow: 0 18px 60px rgba(31, 36, 31, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(52, 52, 52, 0.98);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(24, 29, 25, 0.2);
}
.nav-wrap {
  width: var(--container);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 132px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--gold);
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover,
.button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 10px 26px rgba(181, 138, 42, 0.22);
  transform: translateY(-2px);
}
.button-outline {
  color: var(--ink) !important;
  background: transparent;
  border-color: rgba(37, 40, 36, 0.4);
}
.button-outline:hover { color: var(--white) !important; background: var(--forest); border-color: var(--forest); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
}
.header-action:hover { color: #343434; background: var(--white); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 86px));
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s linear;
}
.hero-slide.active img { transform: scale(1.1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 22, 17, 0.65), rgba(15, 22, 17, 0.12) 62%, rgba(15, 22, 17, 0.25));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: min(800px, calc(100vh - 86px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 90px 0 120px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #efd895; }
.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7.1vw, 6.7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.hero-copy {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button-outline { color: var(--white) !important; border-color: rgba(255, 255, 255, 0.66); }
.hero .button-outline:hover { background: var(--white); border-color: var(--white); color: var(--ink) !important; }
.hero-dots {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100% - min(1180px, calc(100% - 40px))) / 2));
  bottom: 35px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.hero-dot.active { background: var(--white); }
.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(20,25,21,.18);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.hero-arrow:hover { color: var(--ink); background: var(--white); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section-tight { padding: clamp(56px, 7vw, 88px) 0; }
.section-cream { background: var(--cream); }
.section-forest { color: var(--white); background: var(--forest); }
.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 850px; margin-inline: auto; }
.section-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.section-heading.small { font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
.lead {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
}
.center { text-align: center; }
.center .eyebrow { margin-inline: auto; }
.section-intro { max-width: 780px; margin: 22px auto 0; color: var(--muted); font-size: 1.05rem; }
.spacer-top { margin-top: 42px; }

.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.service-card-content { padding: 28px 28px 32px; }
.service-number { color: var(--gold); font-size: 0.73rem; font-weight: 750; letter-spacing: .16em; }
.service-card h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.15; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.portfolio-preview {
  margin: 50px 0 42px;
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.portfolio-preview a { position: relative; overflow: hidden; }
.portfolio-preview a:first-child { grid-row: 1 / 3; }
.portfolio-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms ease; }
.portfolio-preview a:hover img { transform: scale(1.045); }
.portfolio-preview a::after { content: "View project"; position: absolute; inset: auto 18px 16px; color: white; opacity: 0; transform: translateY(8px); transition: 180ms ease; }
.portfolio-preview a:hover::after { opacity: 1; transform: translateY(0); }

.founder-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}
.founder-photo { position: relative; }
.founder-photo::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(181, 138, 42, .52); border-radius: 50%; }
.founder-photo img { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; }
.quote { margin: 28px 0 26px; color: var(--muted); font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.55rem); line-height: 1.55; }
.signature { margin: 0; font-weight: 700; }

.clients-grid { margin-top: 44px; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.clients-grid img { width: 100%; }

.cta-band { position: relative; overflow: hidden; padding: 82px 0; background: var(--forest); color: white; }
.cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -240px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 4rem); font-weight: 400; line-height: 1.08; }
.cta-copy { max-width: 820px; margin: 18px 0 0; color: rgba(255,255,255,.8); }
.cta-band--image {
  padding: clamp(76px, 9vw, 118px) 0;
  background-color: #4b463f;
  background-position: center 52%;
  background-size: cover;
}
.cta-band--faq { background-image: linear-gradient(rgba(38, 34, 29, .48), rgba(38, 34, 29, .48)), url("../images/portfolio/6-360-montreal-street-5.jpg"); }
.cta-band--process { background-image: linear-gradient(rgba(28, 34, 29, .54), rgba(28, 34, 29, .54)), url("../images/cta/van-1-1.webp"); }
.cta-band--image::after { display: none; }
.cta-band--image .cta-inner { flex-direction: column; text-align: center; }
.cta-band--image .cta-inner h2 { max-width: 980px; }
.cta-band--image .cta-copy { max-width: 1120px; color: rgba(255,255,255,.94); font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.45rem); }

.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  color: white;
  background: var(--forest);
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .52; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21, 31, 24, .76), rgba(21, 31, 24, .12)); }
.page-hero-content { position: relative; z-index: 1; width: var(--container); margin: 0 auto; padding: 100px 0 72px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero p { max-width: 720px; margin: 20px 0 0; color: rgba(255,255,255,.86); font-size: 1.1rem; }

.process-list { position: relative; margin-top: 64px; }
.process-list::before { content: ""; position: absolute; left: 33px; top: 34px; bottom: 34px; width: 1px; background: rgba(181, 138, 42, .38); }
.process-step { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: 28px; padding: 0 0 54px; }
.process-step:last-child { padding-bottom: 0; }
.process-number { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-family: var(--serif); font-size: 1.3rem; }
.process-step h2 { margin: 3px 0 8px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.process-step p { margin: 0; max-width: 720px; color: var(--muted); }

.faq-list { max-width: 900px; margin: 54px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 54px 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.45rem); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--gold); font-family: var(--sans); font-size: 1.7rem; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 780px; padding: 0 42px 26px 0; color: var(--muted); }
.faq-answer p { margin: 0; }

.filters { margin: 42px 0 34px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-button { padding: 10px 19px; border: 1px solid var(--line); border-radius: 999px; background: white; cursor: pointer; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.filter-button.active, .filter-button:hover { color: white; background: var(--forest); border-color: var(--forest); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--cream); cursor: zoom-in; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 450ms ease; }
.gallery-item:hover img { transform: scale(1.035); }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 68px 24px 24px; background: rgba(12, 15, 13, .92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: calc(100vh - 100px); object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; color: white; font-size: 1.65rem; cursor: pointer; }

.contact-grid { align-items: start; }
.contact-card { padding: clamp(30px, 5vw, 54px); background: var(--cream); }
.contact-card h2 { margin-top: 0; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }
.contact-links { margin: 32px 0 0; display: grid; gap: 16px; }
.contact-link { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; text-decoration: none; }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); }
.contact-link small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 14px 15px; color: var(--ink); background: white; outline: none; }
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,138,42,.12); }
textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.form-note a { color: inherit; }
.form-status { min-height: 1.35em; margin: 14px 0 0; font-size: .9rem; }
.form-status.success { color: #25633f; }
.form-status.error { color: #a43a31; }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.button:disabled { cursor: wait; opacity: .68; }

.legal-hero {
  padding: clamp(84px, 11vw, 140px) 0 clamp(64px, 8vw, 96px);
  color: var(--ink);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.legal-hero p:last-child { max-width: 700px; margin: 22px 0 0; color: var(--muted); }
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 8vw, 100px);
}
.legal-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.legal-nav strong { margin-bottom: 6px; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.legal-nav a { color: var(--muted); text-decoration: none; font-size: .86rem; }
.legal-nav a:hover { color: var(--gold-dark); }
.legal-content { max-width: 840px; color: #4c524c; }
.legal-content section { scroll-margin-top: 120px; padding: 0 0 52px; }
.legal-content section + section { padding-top: 52px; border-top: 1px solid var(--line); }
.legal-content h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.legal-content p { margin: 0 0 14px; }
.legal-content .subclause { padding-left: 22px; }

.site-footer { padding: 68px 0 26px; color: rgba(255,255,255,.75); background: #1c2720; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 60px; }
.footer-brand img { width: 145px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 440px; margin: 22px 0 0; }
.footer-title { margin: 0 0 18px; color: white; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 56px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .78rem; }
.back-to-top {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: white;
  background: rgba(38,54,45,.92);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { margin-left: 0; }
  .main-nav {
    position: fixed;
    inset: 86px 0 auto;
    height: calc(100vh - 86px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 34px 24px;
    background: rgba(255,255,255,.985);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 18px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .main-nav a { color: var(--ink); }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta { width: auto; margin-top: 26px; padding: 12px 22px; border-bottom: 0; font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .services-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 11px); }
  .portfolio-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px 220px; }
  .portfolio-preview a:first-child { grid-column: 1 / -1; grid-row: auto; }
  .founder-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 520px; margin: 0 auto; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 112px; }
  .nav-wrap { gap: 10px; }
  .header-actions { margin-left: auto; gap: 5px; }
  .header-action { width: 32px; height: 32px; font-size: .9rem; }
  .main-nav { inset: 76px 0 auto; height: calc(100vh - 76px); }
  .hero, .hero-content { min-height: calc(100svh - 76px); }
  .hero-content { padding: 70px 0 105px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-arrow { width: 42px; height: 42px; top: 47%; font-size: 1.9rem; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 100%; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: none; }
  .portfolio-preview { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 160px 160px; }
  .page-hero { min-height: 420px; }
  .process-step { grid-template-columns: 52px 1fr; gap: 18px; }
  .process-number { width: 52px; height: 52px; }
  .process-list::before { left: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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