:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0c0d0d;
  --panel: #121312;
  --panel-2: #191a18;
  --text: #f5f5f0;
  --muted: #b9bbb3;
  --line: rgba(245, 245, 240, .16);
  --line-strong: rgba(245, 245, 240, .34);
  --steel: #b7c0c7;
  --concrete: #858179;
  --signal: #d7ff35;
  --warning: #ffb000;
  --danger: #ff5c5c;
  --shadow: 0 24px 80px rgba(0, 0, 0, .48);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, .018) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, rgba(215, 255, 53, .08), transparent 34rem),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 176, 0, .07) 42% 43%, transparent 43% 100%),
    linear-gradient(65deg, transparent 0 65%, rgba(183, 192, 199, .08) 65% 66%, transparent 66% 100%);
  opacity: .85;
  z-index: -1;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--signal);
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  background: var(--signal);
  color: #050505;
  transform: translateY(-160%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand-link img {
  width: 216px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border: 1px solid transparent;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .04);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: .65rem;
}

.quote-cta {
  --stripe: rgba(5, 5, 5, .24);
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .8rem 1.05rem;
  border: 1px solid rgba(255, 176, 0, .95);
  border-radius: var(--radius);
  color: #050505;
  background:
    repeating-linear-gradient(-45deg, transparent 0 11px, var(--stripe) 11px 18px),
    linear-gradient(135deg, var(--signal), var(--warning));
  box-shadow:
    0 0 0 1px rgba(215, 255, 53, .2),
    0 12px 34px rgba(215, 255, 53, .18),
    inset 0 -10px 18px rgba(5, 5, 5, .16);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  animation: quotePulse 2.6s ease-in-out infinite;
}

.quote-cta::before,
.quote-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.quote-cta::before {
  inset: -3px;
  z-index: -1;
  border: 1px solid rgba(215, 255, 53, .72);
  border-radius: calc(var(--radius) + 4px);
  opacity: .7;
  animation: quoteOrbit 1.8s linear infinite;
}

.quote-cta::after {
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, .72) 47%, transparent 58% 100%);
  transform: translateX(-130%);
  animation: quoteSweep 3.4s ease-in-out infinite;
}

.quote-cta span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.quote-cta:hover,
.quote-cta:focus-visible {
  color: #050505;
  border-color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .45),
    0 18px 48px rgba(215, 255, 53, .28),
    inset 0 -10px 18px rgba(5, 5, 5, .12);
}

.site-nav a.quote-cta-mobile {
  display: none;
}

@keyframes quotePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(215, 255, 53, .2),
      0 12px 34px rgba(215, 255, 53, .18),
      inset 0 -10px 18px rgba(5, 5, 5, .16);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(215, 255, 53, .46),
      0 16px 46px rgba(215, 255, 53, .3),
      inset 0 -10px 18px rgba(5, 5, 5, .12);
  }
}

@keyframes quoteOrbit {
  0%,
  100% {
    clip-path: inset(0 78% 78% 0);
  }

  25% {
    clip-path: inset(0 0 78% 78%);
  }

  50% {
    clip-path: inset(78% 0 0 78%);
  }

  75% {
    clip-path: inset(78% 78% 0 0);
  }
}

@keyframes quoteSweep {
  0%,
  48% {
    transform: translateX(-130%);
  }

  68%,
  100% {
    transform: translateX(130%);
  }
}

.header-call {
  padding: .72rem .9rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: linear-gradient(135deg, rgba(215, 255, 53, .14), rgba(255, 255, 255, .03));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(860px, calc(100% - 32px));
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 5rem 0 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18vh;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--signal);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: 4rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.15rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  background: transparent;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--signal);
  color: #050505;
  border-color: var(--signal);
}

.button.ghost {
  background: rgba(255, 255, 255, .04);
}

.text-link {
  color: var(--signal);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .55;
  filter: contrast(1.08) saturate(.9);
}

.hero-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-1 {
  right: 4vw;
  top: 8vh;
  width: 38vw;
  height: 52vh;
  clip-path: polygon(10% 0, 100% 0, 92% 100%, 0 100%);
}

.hero-frame-2 {
  right: 31vw;
  bottom: 6vh;
  width: 23vw;
  height: 34vh;
}

.hero-frame-3 {
  right: 2vw;
  bottom: 7vh;
  width: 24vw;
  height: 28vh;
}

.hero-frame-4,
.hero-frame-5 {
  display: none;
}

.hero-structure {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-structure span {
  position: absolute;
  background: rgba(215, 255, 53, .26);
  transform-origin: center;
}

.hero-structure span:nth-child(1) {
  width: 46vw;
  height: 2px;
  right: 0;
  top: 28%;
  transform: rotate(-18deg);
}

.hero-structure span:nth-child(2) {
  width: 2px;
  height: 58vh;
  right: 30%;
  top: 12%;
  transform: rotate(9deg);
}

.hero-structure span:nth-child(3) {
  width: 22vw;
  height: 6px;
  right: 12%;
  bottom: 12%;
  background: rgba(255, 176, 0, .34);
}

.hero-structure span:nth-child(4) {
  width: 11vw;
  height: 11vw;
  right: 22%;
  top: 24%;
  border: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
  transform: rotate(45deg);
}

.hero-status {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3.4rem;
  background: var(--line);
}

.hero-status span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: .75rem;
  background: rgba(5, 5, 5, .72);
  color: var(--muted);
  font-weight: 800;
}

.hero-status.compact {
  max-width: 470px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.section {
  padding: 6rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 4rem;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading.horizontal {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.method-slab,
.service-panel,
.detail-panel,
.identity-plate,
.address-panel,
.contact-line,
.legal-block,
.empty-state,
.admin-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)),
    var(--panel);
  border-radius: var(--radius);
}

.method-slab {
  min-height: 250px;
  padding: 1.2rem;
  background-color: var(--bg-2);
}

.method-slab span,
.detail-panel span {
  color: var(--warning);
  font-weight: 900;
}

.method-slab p,
.detail-panel p,
.service-panel span,
.text-stack p,
.identity-plate dd,
.address-panel p,
.legal-block p,
.empty-state p {
  color: var(--muted);
}

.service-radar {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.service-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-panel {
  min-height: 235px;
  padding: 1.15rem;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--signal);
  transform: scaleY(.22);
  transform-origin: bottom;
  transition: transform .24s ease;
}

.service-panel:hover::before {
  transform: scaleY(1);
}

.service-panel strong {
  font-size: 1.35rem;
}

.live-gallery {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
}

.image-river {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.river-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  padding: 0;
  background: var(--panel);
  overflow: hidden;
  cursor: zoom-in;
}

.river-image,
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.river-item:hover .river-image,
.gallery-item:hover .gallery-image {
  transform: scale(1.04);
  filter: contrast(1.08);
}

.impic-zone {
  background:
    linear-gradient(135deg, rgba(215, 255, 53, .08), transparent 55%),
    rgba(255, 255, 255, .015);
}

.impic-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.impic-layout p {
  max-width: 620px;
  color: var(--muted);
}

.impic-badge-link {
  display: grid;
  gap: .75rem;
  justify-items: center;
  padding: 1rem;
  border: 1px solid rgba(245, 245, 240, .48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff, #e8edf2);
  color: #132746;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .28);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.impic-badge-link img {
  width: min(260px, 100%);
  height: auto;
}

.impic-badge-link span {
  font-weight: 900;
}

.impic-badge-link strong {
  max-width: 300px;
  color: #132746;
  font-size: .9rem;
  line-height: 1.28;
  text-align: center;
}

.impic-badge-link:hover {
  transform: translateY(-3px);
  border-color: var(--signal);
  color: #132746;
  box-shadow: 0 26px 76px rgba(215, 255, 53, .16);
}

.contact-strip {
  padding: 4rem 0;
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 176, 0, .12), transparent 36%),
    var(--panel);
}

.contact-strip h2,
.contact-strip p {
  margin-bottom: .3rem;
}

.contact-strip p {
  color: var(--muted);
}

.page-hero {
  padding: 7rem 0 4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(215, 255, 53, .1), transparent 30%),
    linear-gradient(0deg, rgba(255, 255, 255, .035), transparent);
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.text-stack {
  max-width: 680px;
}

.identity-plate {
  padding: 1.4rem;
}

.identity-plate dl,
.identity-plate dd {
  margin: 0;
}

.identity-plate div {
  display: grid;
  gap: .2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.identity-plate div:last-child {
  border-bottom: 0;
}

.identity-plate dt {
  color: var(--signal);
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-panel {
  min-height: 260px;
  padding: 1.4rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.gallery-filters button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .55rem .85rem;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.gallery-filters button.is-active,
.gallery-filters button:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: .1rem;
  padding: 2rem .9rem .8rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), transparent);
}

.gallery-item small {
  color: var(--muted);
}

.empty-state {
  padding: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 1rem;
}

.contact-column {
  display: grid;
  gap: .8rem;
}

.contact-line {
  min-height: 110px;
  padding: 1.2rem;
  display: grid;
  align-content: center;
}

.contact-line span {
  color: var(--signal);
  font-weight: 800;
}

.contact-line strong {
  font-size: 1.3rem;
}

.address-panel {
  padding: 1.4rem;
}

.address-panel address {
  margin-bottom: 1rem;
  color: var(--muted);
  font-style: normal;
}

.legal-content {
  padding: 4rem 0 6rem;
}

.legal-block {
  padding: 1.3rem;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 2rem;
}

.footer-grid h2 {
  font-size: 1rem;
}

.footer-grid p,
.footer-grid address,
.footer-list {
  color: var(--muted);
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-impic-link {
  display: grid;
  gap: .25rem;
  margin-top: 1rem;
  padding: .85rem;
  border: 1px solid rgba(215, 255, 53, .32);
  border-radius: var(--radius);
  background: rgba(215, 255, 53, .055);
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-impic-link span {
  color: var(--signal);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-impic-link strong {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.35;
}

.footer-impic-link:hover,
.footer-impic-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--signal);
  background: rgba(215, 255, 53, .09);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: .4rem;
}

.footer-grid address {
  font-style: normal;
}

.footer-social {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-social h3 {
  margin-bottom: .65rem;
  color: var(--text);
  font-size: .92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.social-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .58rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)),
    rgba(255, 255, 255, .025);
  color: var(--text);
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.social-link svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--signal);
  color: var(--signal);
  background: rgba(215, 255, 53, .08);
}

.footer-legal {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  margin-bottom: .8rem;
}

.footer-legal p {
  margin-bottom: .35rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: #050505;
  z-index: 90;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
}

.whatsapp-float svg {
  fill: currentColor;
}

.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: min(920px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .96);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice h2 {
  margin-bottom: .25rem;
  font-size: 1rem;
}

.cookie-notice p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: flex-end;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, .92);
  z-index: 500;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-figure {
  width: min(1100px, 100%);
  margin: 0;
  display: grid;
  gap: .8rem;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 1.5rem;
  color: var(--muted);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .6rem;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, .96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .site-nav a.quote-cta-mobile {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    margin-top: .35rem;
    color: #050505;
  }

  .site-nav a.quote-cta-mobile:hover,
  .site-nav a.quote-cta-mobile:focus-visible {
    color: #050505;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-frame-1 {
    width: 58vw;
    opacity: .7;
  }

  .hero-frame-2,
  .hero-frame-3 {
    display: none;
  }

  .split-layout,
  .impic-layout,
  .contact-strip-inner,
  .contact-grid,
  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .method-grid,
  .service-track,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .image-river {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand-link img {
    width: 172px;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 2rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-media {
    opacity: .28;
  }

  .hero-frame-1 {
    inset: 5vh -18vw auto auto;
    width: 84vw;
    height: 45vh;
  }

  .hero-status,
  .method-grid,
  .service-track,
  .service-detail-grid,
  .gallery-grid,
  .footer-grid,
  .image-river {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading.horizontal {
    display: grid;
    align-items: start;
  }

  .page-hero {
    padding: 5rem 0 3rem;
  }

  .contact-strip-inner {
    padding: 1.2rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}
