@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;800&family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500;700&display=swap');

:root {
  --ink: #0b3147;
  --ink-2: #174b66;
  --paper: #f2f7fa;
  --white: #ffffff;
  --soft: #dce9ef;
  --accent: #b7632d;
  --accent-dark: #82401b;
  --alert: #c9322c;
  --success: #28775b;
  --line: rgba(11, 49, 71, .32);
  --line-light: rgba(242, 247, 250, .32);
  --title: 'Barlow Condensed', sans-serif;
  --text: 'Inter', sans-serif;
  --data: 'Roboto Mono', monospace;
  --frame: min(1400px, calc(100vw - 32px));
}

@keyframes aq-scan {
  from { background-position: 0 0; }
  to { background-position: 0 48px; }
}

@keyframes aq-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-45%); }
}

@keyframes aq-status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.72); }
}

@keyframes aq-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes aq-reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

* {
  box-sizing: border-box;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  background: #cbd8de;
}

body {
  margin: 0;
  padding-bottom: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(11, 49, 71, .08) 50%, transparent calc(50% + .5px)),
    #cbd8de;
  color: var(--ink);
  font-family: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

a {
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  min-height: 44px;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
.brand b,
.footer-phone {
  font-family: var(--title);
  font-weight: 600;
  line-height: .94;
}

:is(.utility, .hero-console, .hero-rail, .hero-edition, .hero-sticker, .hero-ticker, .trust, .project-caption, .steps article > b, .service-detail article > b, .price-grid article > span, .plans article > span, .local-intro aside, .local-projects article > span, .calendar header, .days button, .dashboard header > span, .tier-badge, .fullscreen-gallery > p, .fullscreen-gallery figcaption b, .legal-content > p:first-child, .map span) {
  font-family: var(--data);
  font-variant-numeric: tabular-nums slashed-zero;
}

.skip {
  position: fixed;
  top: -5rem;
  left: 16px;
  z-index: 250;
  padding: .75rem 1rem;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}

.skip:focus {
  top: 16px;
}

.utility,
.site-head,
main > section,
main > article,
footer {
  width: var(--frame);
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.utility {
  min-height: 36px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
  font-size: .62rem;
  letter-spacing: .08em;
}

.utility span:first-child::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--alert);
  animation: aq-status-pulse 1.8s ease-in-out infinite;
}

.utility a {
  font-weight: 700;
  transition: color .22s ease;
}

.utility a:hover {
  color: #f5b890;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 247, 250, .97);
}

.brand {
  min-height: 52px;
  display: inline-grid;
  grid-template-columns: 50px auto;
  align-items: center;
  gap: 12px;
}

.brand i {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--data);
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
}

.brand i::after {
  content: '';
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background: #69d7ae;
  animation: aq-status-pulse 2.2s ease-in-out infinite;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand b {
  font-size: 1.22rem;
  letter-spacing: .04em;
}

.brand small {
  font-family: var(--data);
  font-size: .52rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-head nav {
  justify-self: end;
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--line);
}

.site-head nav a {
  position: relative;
  min-height: 84px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
  transition: color .22s ease, background-color .22s ease;
}

.site-head nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-head nav a:hover,
.site-head nav a.active {
  background: var(--white);
  color: var(--accent-dark);
}

.site-head nav a:hover::after,
.site-head nav a.active::after {
  transform: scaleX(1);
}

.head-call {
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--ink);
  font-family: var(--data);
  font-size: .65rem;
  font-weight: 700;
  transition: background-color .22s ease, color .22s ease;
}

.head-call:hover {
  background: var(--ink);
  color: var(--paper);
}

.head-cta,
.primary {
  padding: .82rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: var(--white);
  font-family: var(--text);
  font-size: .72rem;
  font-weight: 700;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.head-cta:hover,
.primary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.menu {
  display: none;
  padding: .7rem 1rem;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--data);
  font-size: .65rem;
  text-transform: uppercase;
  transition: background-color .22s ease, color .22s ease;
}

.menu:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-copy > span,
.statement > span,
.services header > span,
.portfolio-home header > span,
.steps header > span,
.reviews header > span,
.zone > div > span,
.final > span,
.page-hero span,
.company span,
.design-system > span,
.contact-grid > div > span,
.wizard header > span,
.calendar > div > span,
.aid-band > span,
.service-focus span,
.local-intro span,
.journal-grid article > span,
.error-page > span {
  font-family: var(--data);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.essential-hero {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  background:
    linear-gradient(rgba(11, 49, 71, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 49, 71, .055) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  animation: aq-scan 22s linear infinite;
}

.essential-hero .hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(46px, 5vw, 74px) clamp(28px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
  animation: aq-reveal .55s ease-out both;
}

.essential-hero .hero-copy::before {
  content: 'FICHE / AQ-2608-04';
  align-self: stretch;
  margin-bottom: 22px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-family: var(--data);
  font-size: .6rem;
  letter-spacing: .08em;
}

.essential-hero h1 {
  max-width: 7.4ch;
  margin: .18em 0 .22em;
  font-size: clamp(4.4rem, 6.2vw, 7.1rem);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.essential-hero h1 em,
.essential-hero h1 strong {
  display: block;
  font-style: normal;
}

.essential-hero h1 strong {
  color: var(--accent-dark);
}

.hero-copy > p {
  max-width: 39rem;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}

.hero-actions {
  width: 100%;
  margin: 18px 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-actions a {
  padding: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: .67rem;
  font-weight: 700;
  text-align: center;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.hero-actions a:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-actions .urgent {
  border-color: #9f2622;
  background: var(--alert);
  color: var(--white);
}

.hero-copy > small {
  font-family: var(--data);
  font-size: .57rem;
  letter-spacing: .03em;
}

.essential-hero > figure {
  position: relative;
  min-width: 0;
  min-height: 610px;
  margin: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.essential-hero > figure::before,
.page-hero::before,
.service-focus::before,
.company::before {
  content: '';
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--paper);
  border-right: 1px solid var(--paper);
  pointer-events: none;
}

.essential-hero > figure img {
  height: 100%;
  min-height: 610px;
  filter: saturate(.78) contrast(1.05);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

.essential-hero > figure:hover img {
  transform: scale(1.025);
  filter: saturate(.95) contrast(1.02);
}

.hero figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  border: 1px solid var(--line-light);
  background: rgba(11, 49, 71, .92);
  color: var(--paper);
  font-family: var(--data);
  font-size: .55rem;
  letter-spacing: .04em;
}

.hero-edition {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: calc(44% + 32px);
  min-width: 190px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: .58rem;
}

.hero-edition::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  animation: aq-line-draw .8s ease-out both;
}

.hero-mark {
  display: none;
}

.signature-hero {
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  grid-template-rows: 1fr 38px;
  isolation: isolate;
  background: #071f2d;
  color: var(--paper);
}

.signature-hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(rgba(242, 247, 250, .08) 1px, transparent 1px);
  background-size: 100% 48px;
  pointer-events: none;
  animation: aq-scan 14s linear infinite;
}

.signature-hero > figure {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
}

.signature-hero > figure img {
  height: 100%;
  filter: saturate(.62) contrast(1.12) brightness(.72);
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.signature-hero:hover > figure img {
  transform: scale(1.018);
  filter: saturate(.72) contrast(1.12) brightness(.68);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 45, .97) 0%, rgba(7, 31, 45, .86) 42%, rgba(7, 31, 45, .34) 70%, rgba(7, 31, 45, .68) 100%);
}

.signature-hero .hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: min(760px, 64vw);
  padding: 72px 48px 64px 60px;
}

.signature-hero .hero-copy > span {
  color: #b9d8e7;
}

.signature-hero h1 {
  max-width: 8.2ch;
  margin: .16em 0 .2em;
  font-size: clamp(5rem, 7.2vw, 8.8rem);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.signature-hero h1 em,
.signature-hero h1 strong {
  display: block;
  font-style: normal;
}

.signature-hero h1 strong {
  color: #efac7c;
}

.signature-hero .hero-copy > p {
  max-width: 570px;
  border-color: var(--line-light);
}

.signature-hero .hero-actions {
  max-width: 580px;
}

.signature-hero .hero-actions a {
  border-color: var(--paper);
}

.hero-console {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 360px;
  margin-right: 28px;
  border: 1px solid var(--line-light);
  background: rgba(7, 31, 45, .92);
  color: var(--paper);
}

.hero-console header {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line-light);
  font-size: .58rem;
}

.hero-console header span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: #69d7ae;
  animation: aq-status-pulse 1.6s ease-in-out infinite;
}

.hero-console h2 {
  margin: 0;
  padding: 20px 14px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-console dl {
  margin: 0;
}

.hero-console dl > div {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
  font-size: .62rem;
}

.hero-console dt {
  color: #b9d8e7;
}

.hero-console dd {
  margin: 0;
  text-align: right;
}

.hero-console > a {
  min-height: 50px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  transition: background-color .22s ease, color .22s ease, padding .22s ease;
}

.hero-console > a:hover {
  padding-left: 20px;
  background: var(--paper);
  color: var(--ink);
}

.hero-rail {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 28px;
  display: flex;
  border: 1px solid var(--line-light);
  background: rgba(7, 31, 45, .82);
}

.hero-rail span {
  padding: 9px 12px;
  border-right: 1px solid var(--line-light);
  font-size: .52rem;
}

.hero-rail span:last-child {
  border-right: 0;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 28px;
  padding: 10px 12px;
  border: 1px solid var(--paper);
  background: var(--accent);
  color: var(--white);
  font-size: .52rem;
  font-style: normal;
  line-height: 1.45;
  text-align: right;
}

.hero-ticker {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: var(--accent);
  color: var(--white);
  white-space: nowrap;
}

.hero-ticker span {
  min-width: 210%;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: .58rem;
  letter-spacing: .08em;
  animation: aq-ticker 20s linear infinite;
}

.trust {
  padding: 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.trust > p {
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center start;
  border-right: 1px solid var(--line-light);
  font-size: .57rem;
  letter-spacing: .08em;
}

.trust > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust span {
  min-height: 74px;
  padding: 14px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line-light);
  font-size: .7rem;
  transition: background-color .22s ease, color .22s ease;
}

.trust span:last-child {
  border-right: 0;
}

.trust span:hover {
  background: var(--paper);
  color: var(--ink);
}

.trust i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--data);
  font-style: normal;
}

.statement,
.portfolio-home > header,
.services > header,
.steps > header,
.reviews > header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(230px, 340px);
  align-items: start;
  gap: 28px;
}

.statement {
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.statement > span,
.portfolio-home > header > span,
.services > header > span,
.steps > header > span,
.reviews > header > span {
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.statement h2,
.services h2,
.portfolio-home h2,
.steps h2,
.reviews h2,
.zone h2,
.final h2,
.company h2,
.design-system h2,
.contact-grid h2,
.wizard h2,
.calendar h2,
.aid-band h2,
.service-focus h2,
.local-intro h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  letter-spacing: -.035em;
}

.statement > p,
.portfolio-home > header > p {
  margin: 0;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.services {
  padding: 64px 24px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.services > header {
  grid-template-columns: 190px minmax(0, 1fr);
}

.services > div {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services article {
  min-height: 330px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .32);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.services article:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
}

.services article > b {
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-family: var(--data);
  font-size: .62rem;
}

.services h3 {
  margin: auto 0 10px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.services article p {
  min-height: 72px;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: .82rem;
}

.services article a {
  align-self: flex-start;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: .68rem;
  font-weight: 700;
  transition: color .22s ease, padding-left .22s ease;
}

.services article a:hover {
  padding-left: 8px;
  color: #efac7c;
}

.portfolio-home {
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.compare {
  --position: 52%;
  position: relative;
  height: min(65vw, 690px);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.compare > img,
.compare .before,
.compare .before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare > img {
  transition: filter .35s ease;
}

.compare:hover > img {
  filter: saturate(1.08);
}

.compare .before {
  width: var(--position);
  overflow: hidden;
  border-right: 1px solid var(--white);
}

.compare .before img {
  width: calc(var(--frame) - 48px);
  max-width: none;
}

.compare input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare > span {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--data);
  font-size: .55rem;
}

.compare > span:nth-of-type(1) { left: 12px; }
.compare > span:nth-of-type(2) { right: 12px; }

.compare > i {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--position);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
  transform: translate(-50%, -50%);
  font-style: normal;
}

.compare > i::after {
  content: '↔';
  font-family: var(--data);
}

.project-caption {
  min-height: 66px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-size: .6rem;
}

.project-caption a {
  font-family: var(--text);
  font-weight: 700;
  transition: color .22s ease, transform .22s ease;
}

.project-caption a:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.signature-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 58% 42%;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.signature-stage figure {
  min-height: 720px;
  margin: 16px;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.signature-stage figure img {
  height: 100%;
  filter: saturate(.72);
  transition: transform .8s ease, filter .4s ease;
}

.signature-stage figure:hover img {
  transform: scale(1.025);
  filter: saturate(.9);
}

.signature-stage figcaption {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 8px 10px;
  border: 1px solid var(--line-light);
  background: var(--ink);
  font-family: var(--data);
  font-size: .55rem;
}

.stage-copy {
  padding: 68px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-light);
}

.stage-copy > span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: .57rem;
}

.stage-copy h2 {
  margin: .3em 0;
  font-size: clamp(3.3rem, 5vw, 5.8rem);
}

.stage-copy p {
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stage-copy a {
  align-self: flex-start;
  padding-top: 16px;
  font-weight: 700;
  transition: color .22s ease, padding-left .22s ease;
}

.stage-copy a:hover {
  padding-left: 8px;
  color: #efac7c;
}

.signature-stage > aside {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 380px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--data);
}

.signature-stage > aside > * {
  margin: 0;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  padding: 64px 24px 72px;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.steps > header {
  grid-template-columns: 190px 1fr;
}

.steps > header > span {
  border-color: var(--line-light);
}

.steps > div {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.steps article {
  min-height: 250px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color .22s ease, color .22s ease;
}

.steps article:hover {
  background: var(--paper);
  color: var(--ink);
}

.steps article > b {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .68rem;
}

.steps article h3 {
  margin: 55px 0 12px;
  font-size: 2rem;
}

.steps article p {
  padding-top: 10px;
  border-top: 1px solid currentColor;
  font-size: .76rem;
}

.reviews {
  padding: 64px 24px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.reviews > header {
  grid-template-columns: 190px 1fr;
}

.reviews > div {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reviews blockquote {
  min-height: 240px;
  margin: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  transition: background-color .22s ease, color .22s ease;
}

.reviews blockquote:hover {
  background: var(--soft);
}

.reviews cite {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-family: var(--data);
  font-size: .56rem;
  font-style: normal;
}

.zone {
  min-height: 610px;
  display: grid;
  grid-template-columns: 55% 45%;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.map {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(242, 247, 250, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 247, 250, .12) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
}

.map::before,
.map::after,
.map i {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line-light);
  transform: translate(-50%, -50%);
}

.map::before { width: 220px; height: 220px; }
.map::after { width: 410px; height: 410px; }
.map i { width: 590px; height: 590px; }

.map span {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: .55rem;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.map span:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.map span:nth-of-type(1) { top: 45%; left: 47%; }
.map span:nth-of-type(2) { top: 56%; left: 67%; }
.map span:nth-of-type(3) { top: 29%; left: 58%; }
.map span:nth-of-type(4) { top: 61%; left: 26%; }

.zone > div:last-child {
  padding: 54px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.zone > div:last-child > span {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.zone p {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final,
.aid-band {
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: var(--white);
}

.final > span,
.aid-band > span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .58);
}

.final h2,
.aid-band h2 {
  max-width: 13ch;
  margin: .3em 0;
}

.final > div {
  display: flex;
  gap: 8px;
}

.final a,
.aid-band a {
  padding: 13px 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 700;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.final a:hover,
.aid-band a:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.final .primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.aid-band p {
  max-width: 700px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .58);
  border-bottom: 1px solid rgba(255, 255, 255, .58);
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 44% 56%;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.page-hero > div {
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(242, 247, 250, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 247, 250, .08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-hero > div::before {
  content: 'DOSSIER / AQUALIS';
  margin-bottom: 22px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: .57rem;
}

.page-hero h1 {
  max-width: 9ch;
  margin: .22em 0;
  font-size: clamp(4rem, 7vw, 7.8rem);
  letter-spacing: -.04em;
}

.page-hero p {
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.page-hero > img {
  height: 100%;
  min-height: 620px;
  filter: saturate(.7) contrast(1.08);
  transition: filter .4s ease, transform .8s ease;
}

.page-hero:hover > img {
  filter: saturate(.86) contrast(1.04);
  transform: scale(1.012);
}

.service-detail,
.price-grid,
.plans {
  padding: 56px 24px 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-detail article,
.price-grid article,
.plans article {
  min-height: 340px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.service-detail article:first-child,
.price-grid article:first-child,
.plans article:first-child {
  border-left: 1px solid var(--line);
}

.service-detail article:hover,
.price-grid article:hover,
.plans article:hover {
  z-index: 2;
  background: var(--soft);
  transform: translateY(-4px);
}

.service-detail article > b,
.price-grid article > span,
.plans article > span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: .58rem;
}

.service-detail article h2,
.price-grid article h2,
.plans article h2 {
  margin: auto 0 14px;
  font-size: 2.8rem;
}

.service-detail article p,
.price-grid article p,
.plans article p {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
}

.service-detail article a,
.plans article a {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  transition: color .22s ease, padding-left .22s ease;
}

.service-detail article a:hover,
.plans article a:hover {
  padding-left: 8px;
  color: var(--accent-dark);
}

.work-gallery {
  padding: 56px 24px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.work-gallery > .compare {
  margin-top: 0;
  margin-bottom: 40px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.filters button {
  padding: 10px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--data);
  font-size: .58rem;
  transition: background-color .22s ease, color .22s ease;
}

.filters button:hover,
.filters button.active {
  background: var(--ink);
  color: var(--paper);
}

.work-gallery > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-gallery article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, transform .22s ease;
}

.work-gallery article:hover {
  z-index: 2;
  transform: translateY(-4px);
}

.work-gallery article img {
  height: 100%;
  transition: transform .75s ease, filter .4s ease;
}

.work-gallery article:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.work-gallery article > div {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border: 1px solid var(--line-light);
  background: rgba(7, 31, 45, .92);
  color: var(--paper);
}

.work-gallery article > div > span {
  font-family: var(--data);
  font-size: .55rem;
}

.work-gallery article h2 {
  margin: 8px 0;
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
  font-size: 2rem;
}

.work-gallery article p {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: .55rem;
}

.company,
.service-focus {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 44% 56%;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.company > div,
.service-focus > div {
  padding: 50px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.company > div > span,
.service-focus > div > span {
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.company > div > p,
.service-focus > div > p {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company > img,
.service-focus > img {
  height: 100%;
  min-height: 680px;
  border: 16px solid var(--paper);
  outline: 1px solid var(--line);
  outline-offset: -16px;
  filter: saturate(.75);
  transition: filter .4s ease, transform .8s ease;
}

.company:hover > img,
.service-focus:hover > img {
  filter: saturate(.92);
  transform: scale(1.008);
}

.service-focus ul {
  width: 100%;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.service-focus li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
}

.service-focus li::before {
  content: '→';
  margin-right: 9px;
  font-family: var(--data);
}

.design-system {
  padding: 56px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.design-system > span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.design-system > div {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 84px) 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.design-system i {
  width: 84px;
  height: 84px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.design-system p {
  min-height: 84px;
  margin: 0;
  padding: 18px;
  display: grid;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--data);
  font-size: .62rem;
}

.contact-grid,
.wizard,
.calendar {
  padding: 56px 24px 72px;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.contact-grid > div,
.wizard > header,
.calendar > div:first-child {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.contact-grid > div > span,
.wizard > header > span,
.calendar > div:first-child > span {
  display: block;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.contact-grid > div > a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--data);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 700;
  transition: color .22s ease, padding-left .22s ease;
}

.contact-grid > div > a:hover {
  padding-left: 8px;
  color: var(--accent-dark);
}

.contact-grid form,
.wizard form,
.calendar > div:last-child {
  padding: 34px;
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.contact-grid label,
.wizard fieldset > label {
  padding: 12px 0;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea,
.wizard input,
.wizard select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .22s ease, background-color .22s ease;
}

.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus,
.wizard input:focus,
.wizard select:focus {
  border-color: var(--accent-dark);
  background: var(--white);
  outline: 2px solid rgba(183, 99, 45, .18);
  outline-offset: 1px;
}

.contact-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid .consent {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.contact-grid .consent input {
  width: 18px;
  min-height: 18px;
}

.contact-grid button,
.wizard button {
  padding: 13px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.contact-grid button:hover,
.wizard button:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.form-status {
  min-height: 42px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--data);
  font-size: .6rem;
}

.wizard {
  background: var(--ink);
  color: var(--paper);
}

.wizard > header {
  border-color: var(--line-light);
  background: var(--ink);
}

.wizard > header > span {
  border-color: var(--line-light);
}

.progress {
  height: 8px;
  margin-top: 28px;
  border: 1px solid var(--line-light);
}

.progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--accent);
  transition: width .35s ease;
}

.wizard form {
  color: var(--ink);
}

.wizard fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard legend {
  width: 100%;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--title);
  font-size: 2.4rem;
  font-weight: 600;
}

.wizard .upload {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.wizard-done {
  padding: 40px;
  text-align: center;
}

.wizard-done b {
  font-family: var(--data);
  font-size: 2rem;
}

.calendar > div:last-child {
  color: var(--ink);
}

.calendar header {
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
}

.days {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.days button {
  min-height: 112px;
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.2rem;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.days button:hover,
.days button.active {
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.days small {
  display: block;
  font-size: .55rem;
}

.dashboard {
  max-width: 1320px;
  min-height: 680px;
  margin: 48px auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.dashboard > aside {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.dashboard > aside > b {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: .65rem;
}

.dashboard aside button {
  padding: 13px 10px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: inherit;
  text-align: left;
  transition: background-color .22s ease, color .22s ease, padding-left .22s ease;
}

.dashboard aside button:hover,
.dashboard aside button.active {
  padding-left: 16px;
  background: var(--accent);
  color: var(--white);
}

.dashboard > div {
  padding: 34px;
}

.dashboard header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard h2 {
  margin: .2em 0;
  font-size: 4rem;
}

.dash-panel {
  display: none;
  padding-top: 20px;
}

.dash-panel.active {
  display: block;
}

.dash-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line);
}

.dash-panel li,
.dash-panel a {
  padding: 14px;
  display: block;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--data);
  font-size: .65rem;
  transition: background-color .22s ease, color .22s ease, padding-left .22s ease;
}

.dash-panel li.done { border-left: 4px solid var(--success); }
.dash-panel li.current { border-left: 4px solid var(--accent); }

.dash-panel a:hover {
  padding-left: 20px;
  background: var(--soft);
}

.dash-panel img {
  max-height: 360px;
  border: 1px solid var(--line);
}

.journal-grid {
  padding: 56px 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.journal-grid article {
  padding: 14px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, transform .22s ease;
}

.journal-grid article:first-child {
  border-left: 1px solid var(--line);
}

.journal-grid article:hover {
  background: var(--soft);
  transform: translateY(-4px);
}

.journal-grid img {
  height: 330px;
  border: 1px solid var(--line);
  filter: saturate(.72);
  transition: filter .4s ease, transform .7s ease;
}

.journal-grid article:hover img {
  filter: saturate(.92);
  transform: scale(1.01);
}

.journal-grid article > span {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.journal-grid h2 {
  font-size: 2.2rem;
}

.local-intro {
  padding: 56px 24px 68px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.local-intro > div {
  padding: 34px;
  border: 1px solid var(--line);
}

.local-intro > div > span {
  display: block;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.local-intro > div > p {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-intro aside {
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.local-intro aside > * {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-light);
}

.local-intro aside strong {
  font-size: 2.4rem;
}

.local-projects {
  padding: 0 24px 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.local-projects article {
  min-height: 310px;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.local-projects article:first-child {
  border-left: 1px solid var(--line);
}

.local-projects article:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
}

.local-projects article > span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .58rem;
}

.local-projects article h2 {
  margin: 48px 0 12px;
  font-size: 2.7rem;
}

.local-projects article p {
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: .8rem;
}

.legal-content {
  max-width: 1400px;
  padding: 56px 24px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-content > p:first-child {
  margin: 0 0 26px;
  padding: 12px;
  border: 1px solid var(--line);
  font-size: .6rem;
}

.legal-content > section,
.legal-content > details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-content > section:last-child,
.legal-content > details:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  max-width: 16ch;
  margin: 0 0 12px;
  font-size: 3.1rem;
}

.legal-content summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  transition: color .22s ease, padding-left .22s ease;
}

.legal-content summary:hover {
  padding-left: 8px;
  color: var(--accent-dark);
}

.fullscreen-gallery {
  position: relative;
  height: min(900px, 92svh);
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: #061a25;
  color: var(--white);
}

.fullscreen-gallery > div,
.fullscreen-gallery figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.fullscreen-gallery figure {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .75s ease;
}

.fullscreen-gallery figure.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.fullscreen-gallery img {
  height: 100%;
  filter: brightness(.72) saturate(.78);
}

.fullscreen-gallery figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  background: rgba(7, 31, 45, .88);
  font-family: var(--title);
  font-size: 2.2rem;
}

.fullscreen-gallery button {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid var(--white);
  background: var(--ink);
  color: var(--white);
  font-family: var(--data);
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.fullscreen-gallery button:hover,
.fullscreen-gallery button:focus-visible {
  background: var(--accent);
  transform: translateY(-3px);
}

.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }

.fullscreen-gallery > p {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid var(--line-light);
  background: var(--ink);
  font-size: .55rem;
}

.error-page {
  min-height: 74svh;
  padding: 70px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(242, 247, 250, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 247, 250, .08) 1px, transparent 1px),
    var(--ink);
  background-size: 32px 32px;
  color: var(--paper);
}

.error-page h1 {
  max-width: 9ch;
  margin: .2em 0;
  font-size: clamp(5rem, 10vw, 11rem);
}

.error-page p {
  max-width: 620px;
  padding: 12px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.error-page a {
  margin-top: 8px;
  padding: 12px 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--paper);
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.error-page a:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

footer {
  padding: 44px 24px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .8fr .8fr;
  gap: 0;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

footer > div {
  min-width: 0;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  font-size: .68rem;
}

footer > div:first-child {
  border-left: 1px solid var(--line-light);
}

footer > div > b,
footer > div > a:not(.brand),
footer > div > span,
footer > div > p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
}

footer > div > a:not(.brand) {
  transition: color .22s ease, padding-left .22s ease;
}

footer > div > a:not(.brand):hover {
  padding-left: 7px;
  color: #efac7c;
}

footer .brand {
  margin-bottom: 12px;
}

footer .brand i {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.footer-phone {
  font-size: 1.8rem;
}

.legal-line {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px 0;
  border-top: 1px solid var(--line-light);
  font-family: var(--data);
  font-size: .55rem;
}

.tier-badge {
  position: fixed;
  z-index: 110;
  right: 0;
  top: 48%;
  padding: 9px 7px;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: var(--white);
  writing-mode: vertical-rl;
  font-size: .52rem;
  letter-spacing: .08em;
}

.mobile-call {
  display: none;
}

body.signature [data-reveal].visible {
  animation: aq-reveal .55s ease-out both;
}

@media (max-width: 1120px) {
  :root { --frame: calc(100vw - 20px); }

  .site-head {
    grid-template-columns: auto 1fr auto;
  }

  .site-head nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 0;
    background: var(--paper);
  }

  .site-head nav.open { display: grid; }

  .site-head nav a {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }

  .menu {
    display: block;
    justify-self: end;
  }

  .head-call { display: none; }

  .essential-hero {
    grid-template-columns: 48% 52%;
  }

  .hero-edition { left: calc(48% + 24px); }

  .signature-hero {
    grid-template-columns: 1fr 330px;
  }

  .hero-console {
    width: 300px;
    margin-right: 18px;
  }

  .statement,
  .portfolio-home > header,
  .services > header,
  .steps > header,
  .reviews > header {
    grid-template-columns: 150px 1fr;
  }

  .statement > p,
  .portfolio-home > header > p {
    grid-column: 2;
  }

  footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  :root { --frame: 100%; }

  body {
    padding-bottom: 62px;
    background: var(--paper);
  }

  .utility {
    min-height: 32px;
    padding: 0 12px;
    grid-template-columns: 1fr auto;
  }

  .utility span:last-child { display: none; }

  .site-head {
    min-height: 72px;
    padding: 0 12px;
  }

  .site-head nav { top: 72px; }
  .site-head .head-cta { display: none; }
  .brand { grid-template-columns: 44px auto; }
  .brand i { width: 44px; height: 44px; }

  .essential-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .essential-hero .hero-copy {
    min-height: 610px;
    padding: 54px 18px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .essential-hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.3rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .essential-hero > figure {
    min-height: 68svh;
    margin: 12px;
  }

  .essential-hero > figure img { min-height: 68svh; }

  .hero-edition {
    position: relative;
    z-index: 5;
    top: auto;
    right: auto;
    left: auto;
    order: 3;
    align-self: flex-end;
    margin: -58px 24px 14px 0;
  }

  .signature-hero {
    min-height: auto;
    padding: 94px 16px 58px;
    display: flex;
    flex-direction: column;
  }

  .signature-hero .hero-copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 0;
  }

  .signature-hero h1 {
    font-size: clamp(4.6rem, 19vw, 6.6rem);
  }

  .signature-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 22px 0 0;
  }

  .hero-console dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-console dl > div:first-child {
    border-right: 1px solid var(--line-light);
  }

  .hero-rail {
    top: 16px;
    left: 16px;
  }

  .hero-rail span:nth-child(n+3) { display: none; }
  .hero-sticker { top: 16px; right: 16px; }
  .hero-ticker { position: absolute; right: 0; bottom: 0; left: 0; height: 38px; }

  .trust {
    grid-template-columns: 1fr;
  }

  .trust > p {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .trust > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust span:nth-child(2) { border-right: 0; }
  .trust span:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }

  .statement,
  .portfolio-home > header,
  .services > header,
  .steps > header,
  .reviews > header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .statement > p,
  .portfolio-home > header > p {
    grid-column: auto;
  }

  .statement,
  .services,
  .portfolio-home,
  .steps,
  .reviews,
  .work-gallery,
  .design-system,
  .legal-content,
  .journal-grid {
    padding: 48px 14px;
  }

  .statement h2,
  .services h2,
  .portfolio-home h2,
  .steps h2,
  .reviews h2,
  .zone h2,
  .final h2,
  .company h2,
  .design-system h2,
  .contact-grid h2,
  .wizard h2,
  .calendar h2,
  .aid-band h2,
  .service-focus h2,
  .local-intro h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .services > div,
  .steps > div,
  .reviews > div,
  .service-detail,
  .price-grid,
  .plans,
  .local-projects,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .services article,
  .steps article,
  .reviews blockquote,
  .service-detail article,
  .price-grid article,
  .plans article,
  .local-projects article,
  .journal-grid article {
    min-height: 260px;
    border-left: 1px solid var(--line);
  }

  .steps article,
  .reviews blockquote {
    border-left-color: var(--line-light);
  }

  .compare {
    height: 72svh;
  }

  .compare .before img {
    width: calc(100vw - 28px);
  }

  .project-caption {
    padding: 14px;
    grid-template-columns: 1fr;
  }

  .signature-stage,
  .zone,
  .page-hero,
  .company,
  .service-focus,
  .contact-grid,
  .wizard,
  .calendar,
  .local-intro {
    grid-template-columns: 1fr;
  }

  .signature-stage figure {
    min-height: 64svh;
  }

  .stage-copy {
    padding: 48px 18px 170px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .signature-stage > aside {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .map,
  .zone {
    min-height: 520px;
  }

  .zone > div:last-child {
    padding: 48px 18px;
  }

  .final,
  .aid-band {
    padding: 54px 18px;
  }

  .final > div {
    display: grid;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero > div {
    min-height: 500px;
    padding: 48px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .page-hero h1 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .page-hero > img {
    min-height: 58svh;
  }

  .service-detail,
  .price-grid,
  .plans {
    padding: 48px 14px;
  }

  .work-gallery > div:last-child {
    grid-template-columns: 1fr;
  }

  .work-gallery article {
    min-height: 66svh;
  }

  .company > div,
  .service-focus > div {
    padding: 48px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company > img,
  .service-focus > img {
    min-height: 58svh;
  }

  .design-system > div {
    grid-template-columns: repeat(4, 1fr);
  }

  .design-system i {
    width: 100%;
  }

  .design-system p {
    grid-column: 1 / -1;
  }

  .contact-grid,
  .wizard,
  .calendar,
  .local-intro {
    padding: 48px 14px;
  }

  .contact-grid form,
  .wizard form,
  .calendar > div:last-child,
  .local-intro aside {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .days {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard {
    width: calc(100vw - 28px);
    margin: 28px 14px;
    grid-template-columns: 1fr;
  }

  .dashboard > aside {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(112px, 1fr);
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .dashboard > aside > b {
    grid-column: 1 / -1;
  }

  .dashboard > div {
    min-width: 0;
    padding: 22px 14px;
  }

  .dashboard h2 {
    font-size: 3.2rem;
  }

  .local-intro > div {
    padding: 28px 18px;
  }

  .local-projects {
    padding: 0 14px 48px;
  }

  .fullscreen-gallery {
    min-height: 650px;
    height: 82svh;
  }

  .fullscreen-gallery figcaption {
    right: 14px;
    bottom: 76px;
    left: 14px;
    display: grid;
    gap: 8px;
    font-size: 1.5rem;
  }

  .fullscreen-gallery button {
    top: auto;
    bottom: 14px;
  }

  .gallery-prev { left: 14px; }
  .gallery-next { right: 14px; }

  .error-page {
    padding: 56px 18px;
  }

  footer {
    padding: 36px 14px 22px;
    grid-template-columns: 1fr;
  }

  footer > div {
    border-left: 1px solid var(--line-light);
  }

  .mobile-call {
    position: fixed;
    z-index: 130;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    place-items: center;
    border-top: 1px solid #8f231f;
    background: var(--alert);
    color: var(--white);
    font-weight: 700;
  }

  body:has(.hero) {
    padding-bottom: 0;
  }

  body:has(.hero) .mobile-call {
    display: none;
  }

  .tier-badge { display: none; }
}

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