:root {
  --green-950: #062d34;
  --green-900: #073f42;
  --green-800: #075753;
  --green-700: #087567;
  --green-600: #0b9274;
  --mint: #95dbc7;
  --mint-soft: #dff4ed;
  --gold: #caa66a;
  --clay: #b36f52;
  --paper: #f7f4ee;
  --stone: #d8d2c6;
  --ink: #173033;
  --muted: #667a7a;
  --white: #ffffff;
  --line: rgba(7, 87, 83, 0.18);
  --shadow: 0 1.5rem 4rem rgba(6, 45, 52, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(7, 87, 83, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(7, 87, 83, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 5rem 5rem;
}

body.has-lightbox {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  width: min(1160px, calc(100% - 2rem));
  min-height: 4.75rem;
  margin: 1rem auto 0;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 1rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 1.4rem;
  background: rgba(247, 244, 238, 0.84);
  box-shadow: 0 1rem 3rem rgba(6, 45, 52, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 3.6rem;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a,
.text-link,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--green-600);
}

.nav-action,
.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.nav-action {
  padding: 0 1rem;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 0.8rem 1.8rem rgba(7, 87, 83, 0.18);
}

.hero-section,
.section,
.process-section,
.contact-section,
.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section {
  min-height: calc(100vh - 6rem);
  padding: 5.25rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.58);
}

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

h1,
h2 {
  color: var(--green-950);
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6.6vw, 5.85rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  line-height: 1.04;
}

h3 {
  color: var(--green-950);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy p,
.section-heading p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  padding: 0 1.35rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.nav-action:hover,
.bio-button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-action:focus-visible,
.bio-button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(11, 146, 116, 0.3);
  outline-offset: 4px;
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  box-shadow: 0 1rem 2.2rem rgba(7, 87, 83, 0.22);
}

.secondary {
  color: var(--green-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.full {
  width: 100%;
}

.hero-visual {
  min-height: 34rem;
  display: grid;
  place-items: center;
}

.blueprint-card {
  width: min(100%, 34rem);
  aspect-ratio: 0.92;
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(223, 244, 237, 0.92), rgba(255, 255, 255, 0.42)),
    linear-gradient(160deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow);
}

.blueprint-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 1rem;
}

.hero-logo {
  width: 42%;
  position: absolute;
  top: 9%;
  left: 9%;
  filter: drop-shadow(0 1rem 1.7rem rgba(6, 45, 52, 0.24));
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  opacity: 0.7;
}

.blueprint-grid span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.blueprint-grid span:nth-child(1) {
  width: 14rem;
  height: 14rem;
  right: -3rem;
  top: 6rem;
}

.blueprint-grid span:nth-child(2) {
  width: 9rem;
  height: 9rem;
  right: 5rem;
  bottom: 4rem;
}

.blueprint-grid span:nth-child(3) {
  width: 18rem;
  height: 18rem;
  left: -8rem;
  bottom: -5rem;
}

.blueprint-grid span:nth-child(4) {
  width: 18rem;
  height: 1px;
  right: 2rem;
  top: 15rem;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.54);
  border-radius: 0;
  transform: rotate(-23deg);
}

.spec {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 0.85rem;
  color: var(--white);
  background: rgba(6, 45, 52, 0.7);
  backdrop-filter: blur(12px);
}

.spec strong {
  font-size: 0.95rem;
}

.spec small {
  color: var(--mint-soft);
  font-size: 0.76rem;
}

.spec-a {
  right: 2rem;
  top: 2.5rem;
}

.spec-b {
  left: 2rem;
  bottom: 2.4rem;
}

.structure {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: 14rem;
  height: 15rem;
}

.floor,
.column {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
}

.floor {
  width: 100%;
  height: 0.55rem;
  left: 0;
  border-radius: 999px;
}

.floor-1 {
  bottom: 0;
}

.floor-2 {
  bottom: 5.6rem;
}

.floor-3 {
  bottom: 11.2rem;
}

.column {
  width: 0.55rem;
  height: 12rem;
  bottom: 0;
  border-radius: 999px;
}

.col-1 {
  left: 1.2rem;
}

.col-2 {
  left: 6.7rem;
}

.col-3 {
  right: 1.2rem;
}

.trust-strip {
  width: min(1160px, calc(100% - 2rem));
  margin: -1rem auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 1rem 3rem rgba(6, 45, 52, 0.08);
}

.trust-strip span {
  min-height: 4.2rem;
  display: grid;
  place-items: center;
  padding: 0.9rem;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.section,
.process-section,
.contact-section {
  padding: 5rem 0;
}

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

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 25rem);
  align-items: end;
  gap: 2rem;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.service-card,
.project-card,
.contact-card,
.process-list > div,
.bio-note {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1rem 2.5rem rgba(6, 45, 52, 0.08);
}

.service-card {
  min-height: 10.25rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 0.8rem;
  row-gap: 0.45rem;
}

.service-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  background: var(--green-800);
}

.service-card h3 {
  margin: 0;
  align-self: center;
}

.service-card p,
.project-card p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card p {
  grid-column: 2;
}

.project-card {
  overflow: hidden;
}

.portfolio-carousel {
  display: grid;
  gap: 1.25rem;
}

.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.carousel-button {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-900);
  font-size: 1.05rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.carousel-status {
  min-width: 4.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.portfolio-image-grid {
  min-height: 42rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.portfolio-image-card {
  min-width: 0;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1rem 2.5rem rgba(6, 45, 52, 0.08);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 87, 83, 0.34);
  box-shadow: 0 1.35rem 3rem rgba(6, 45, 52, 0.12);
}

.portfolio-image-card:focus-visible {
  outline: 3px solid rgba(11, 146, 116, 0.32);
  outline-offset: 4px;
}

.portfolio-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--stone);
}

.portfolio-empty {
  grid-column: 1 / -1;
  min-height: 18rem;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: 0.9rem;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.52);
}

.portfolio-empty strong {
  color: var(--white);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--green-700);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 45, 52, 0.82);
  cursor: zoom-out;
}

.portfolio-lightbox__dialog {
  width: min(100%, 72rem);
  height: min(86vh, 50rem);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(8, 32, 36, 0.72);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
}

.portfolio-lightbox__dialog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.portfolio-lightbox__close {
  width: 2.75rem;
  height: 2.75rem;
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  background: rgba(6, 45, 52, 0.78);
  cursor: pointer;
}

.portfolio-lightbox__nav {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: calc(50% - 1.5rem);
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  background: rgba(6, 45, 52, 0.78);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-lightbox__nav:hover {
  transform: scale(1.06);
  background: rgba(7, 87, 83, 0.9);
}

.portfolio-lightbox__nav--prev {
  left: 1rem;
}

.portfolio-lightbox__nav--next {
  right: 1rem;
}

.project-card span,
.project-card h3,
.project-card p {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.project-card span {
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p {
  margin-bottom: 1.3rem;
}

.project-art {
  height: 13rem;
  position: relative;
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
  overflow: hidden;
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
}

.house .project-art::before {
  width: 58%;
  height: 45%;
  left: 21%;
  bottom: 18%;
  background: var(--paper);
  clip-path: polygon(0 38%, 50% 0, 100% 38%, 100% 100%, 0 100%);
}

.house .project-art::after {
  width: 26%;
  height: 32%;
  left: 37%;
  bottom: 18%;
  background: var(--green-800);
}

.renovation .project-art {
  background: linear-gradient(145deg, var(--clay), var(--green-900));
}

.renovation .project-art::before {
  inset: 2.4rem;
  border: 0.55rem solid rgba(255,255,255,.82);
  border-right-color: transparent;
}

.renovation .project-art::after {
  width: 44%;
  height: 1rem;
  right: 15%;
  bottom: 32%;
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-28deg);
}

.regularization .project-art {
  background: linear-gradient(145deg, var(--green-800), #173033);
}

.regularization .project-art::before {
  width: 55%;
  height: 68%;
  top: 16%;
  left: 22%;
  border-radius: 0.45rem;
  background:
    linear-gradient(var(--green-800) 0 0) 20% 28% / 50% 0.55rem no-repeat,
    linear-gradient(var(--green-800) 0 0) 20% 45% / 62% 0.55rem no-repeat,
    linear-gradient(var(--green-800) 0 0) 20% 62% / 42% 0.55rem no-repeat,
    var(--paper);
}

.regularization .project-art::after {
  width: 4rem;
  height: 4rem;
  right: 19%;
  bottom: 13%;
  border: 0.45rem solid var(--gold);
  border-radius: 50%;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-list > div {
  padding: 1.25rem;
}

.process-list strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--green-950);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 25rem);
  align-items: center;
  gap: 2rem;
}

.contact-card {
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.contact-card img {
  width: 5.75rem;
}

.contact-card strong {
  color: var(--green-950);
  font-size: 1.35rem;
}

.contact-card span {
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.text-link {
  justify-self: center;
  color: var(--green-800);
  font-weight: 800;
}

.site-footer {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.bio-body {
  background:
    radial-gradient(circle at 50% -10%, rgba(149, 219, 199, 0.5), transparent 26rem),
    linear-gradient(150deg, var(--green-950), var(--green-800));
}

.bio-page {
  width: min(100%, 28rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bio-profile {
  padding: 1.4rem 0.5rem 0.75rem;
  text-align: center;
}

.bio-mark {
  width: 10rem;
  aspect-ratio: 1.22;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 1.8rem;
  background: rgba(247, 244, 238, 0.9);
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.2);
}

.bio-mark img {
  width: 86%;
  height: auto;
  object-fit: contain;
}

.bio-profile .eyebrow {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.05rem;
}

.bio-profile h1 {
  margin-bottom: 0.95rem;
  color: var(--white);
  font-size: clamp(2.25rem, 11vw, 3.2rem);
}

.bio-profile p {
  max-width: 22rem;
  margin: 0 auto;
  color: var(--mint-soft);
  line-height: 1.6;
}

.bio-links {
  display: grid;
  gap: 0.72rem;
}

.bio-button {
  min-height: 4.8rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 1rem;
  color: var(--green-950);
  background: rgba(247, 244, 238, 0.92);
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.bio-button::after {
  content: "\2197";
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  right: 0.85rem;
  top: calc(50% - 1.1rem);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
}

.bio-button span,
.bio-button small {
  padding-right: 3rem;
}

.bio-button span {
  font-weight: 800;
}

.bio-button small {
  color: var(--muted);
  line-height: 1.4;
}

.bio-button.featured,
.bio-button.whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.bio-button.featured small,
.bio-button.whatsapp small {
  color: var(--mint-soft);
}

.bio-button.featured::after,
.bio-button.whatsapp::after {
  color: var(--green-900);
  background: var(--mint-soft);
}

.bio-button.instagram::after {
  background: linear-gradient(135deg, #7b4ae2, #d55073, #dca848);
}

.bio-note {
  display: grid;
  gap: 0.35rem;
  margin-top: auto;
  padding: 1rem;
  color: var(--green-950);
  background: rgba(247, 244, 238, 0.88);
}

.bio-note span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding: 0.65rem 0.25rem 0;
    border-top: 1px solid var(--line);
  }

  .hero-section,
  .contact-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 3rem;
  }

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

  .portfolio-image-grid {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid,
  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero-section,
  .section,
  .process-section,
  .contact-section,
  .site-footer,
  .trust-strip {
    width: min(100% - 1rem, 1160px);
  }

  .site-header {
    margin-top: 0.5rem;
  }

  .brand span {
    display: none;
  }

  .nav-action {
    min-height: 2.45rem;
    padding: 0 0.82rem;
    font-size: 0.82rem;
  }

  .main-nav {
    gap: 0.5rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-copy p,
  .section-heading p,
  .contact-section p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 25rem;
  }

  .blueprint-card {
    aspect-ratio: 0.84;
  }

  .spec-a {
    right: 1.5rem;
    top: 1.5rem;
  }

  .spec-b {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .structure {
    width: 11rem;
    height: 12rem;
    right: 2rem;
    bottom: 5rem;
  }

  .trust-strip,
  .service-grid,
  .portfolio-image-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-toolbar {
    justify-content: center;
  }

  .portfolio-image-card img {
    aspect-ratio: 16 / 10;
  }

  .portfolio-lightbox {
    padding: 0.65rem;
  }

  .portfolio-lightbox__dialog {
    height: min(82vh, 42rem);
    border-radius: 0.8rem;
  }

  .portfolio-lightbox__dialog img {
    padding: 0.5rem;
  }

  .portfolio-lightbox__nav {
    width: 2.65rem;
    height: 2.65rem;
    top: auto;
    bottom: 0.85rem;
  }

  .portfolio-lightbox__nav--prev {
    left: calc(50% - 3.1rem);
  }

  .portfolio-lightbox__nav--next {
    right: calc(50% - 3.1rem);
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section,
  .process-section,
  .contact-section {
    padding: 3.5rem 0;
  }

  .site-footer {
    padding: 1.2rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
