:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: rgba(17, 17, 17, 0.82);
  --panel-strong: rgba(10, 10, 10, 0.94);
  --line: rgba(255, 255, 255, 0.18);
  --line-bright: rgba(255, 255, 255, 0.42);
  --text: #f3f3f3;
  --muted: #bdbdbd;
  --muted-2: #8d8d8d;
  --accent: #d5b26d;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(90deg, #000 0, #050505 16%, #111 50%, #050505 84%, #000 100%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.15), transparent 35%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  opacity: 0.7;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 49%, transparent 51%),
    linear-gradient(45deg, transparent 0 49%, rgba(255, 255, 255, 0.04) 50%, transparent 52%);
  background-size: 340px 340px;
  mix-blend-mode: screen;
  opacity: 0.35;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 52px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58));
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-grid;
  gap: 0;
  text-transform: uppercase;
  line-height: 1;
}

.brand-mark {
  font-size: clamp(2.45rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #fff 0%, #9f9f9f 38%, #f7f7f7 51%, #676767 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.25)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.85));
}

.brand-name {
  margin-top: -4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8e8e8;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e8e8e8;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  opacity: 1;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 0 18px rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-phone {
  width: 46px;
  border-radius: 50%;
}

.header-phone svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle {
  min-width: 76px;
  gap: 5px;
  padding: 0 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.language-toggle [data-lang-code] {
  opacity: 0.48;
  transition: opacity 180ms ease, color 180ms ease;
}

.language-toggle[data-lang="en"] [data-lang-code="en"],
.language-toggle[data-lang="es"] [data-lang-code="es"] {
  color: #fff;
  opacity: 1;
}

.language-divider {
  color: rgba(255, 255, 255, 0.35);
}

.header-phone:hover,
.header-phone:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.label-mobile {
  display: none;
}

.btn::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.34), transparent 62%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-outline,
.btn-dark {
  color: #fff;
  background: linear-gradient(180deg, rgba(70, 70, 70, 0.72), rgba(12, 12, 12, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.32), 0 0 22px rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: #0b0b0b;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(176, 176, 176, 0.92) 52%, rgba(245, 245, 245, 0.96)),
    #f2f2f2;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 0 28px rgba(255, 255, 255, 0.14);
}

.full-width {
  width: fit-content;
  min-width: min(100%, 250px);
  justify-self: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: #f1f1f1;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 34px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-composition {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.hero-composition video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-composition #hero-video-0 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-composition #hero-video-2 {
  display: none;
}

.hero-composition-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 50%, transparent 65%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

.hero-composition::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(ellipse at 35% 25%, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-composition::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 25%, transparent 45%, transparent 65%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-composition::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  opacity: 1;
}

.hero-layer-bg {
  z-index: 0;
}

.hero-layer-bg:first-child {
  opacity: 1;
}

.hero-layer-bg:nth-child(2) {
  opacity: 0;
}

.hero-layer-bg {
  z-index: 0;
}

.hero-layer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-layer-overlay {
  z-index: 2;
  opacity: 1;
}

.hero-layer-overlay::after {
  position: absolute;
  inset: 0 0 auto;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-layer-particles {
  z-index: 3;
  pointer-events: none;
  opacity: 0.8;
}
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(213, 178, 109, 0.6);
}

.hero-layer-ambient {
  z-index: 1;
  opacity: 0.35;
  background: radial-gradient(circle at 30% 20%, rgba(213, 178, 109, 0.18) 0%, transparent 50%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: end;
}

.hero-text-group {
  overflow: hidden;
}

.hero-text-group > * {
  will-change: transform, opacity;
}
  min-height: calc(100svh - 146px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #d8d8d8;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

.metal-title {
  margin: 0;
  max-width: 820px;
  color: transparent;
  background: linear-gradient(180deg, #fff 0%, #b6b6b6 42%, #f5f5f5 52%, #777 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(1.9rem, 3.6vw, 3.65rem);
  font-weight: 800;
  line-height: 0.96;
  overflow-wrap: break-word;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.78);
}

.hero .metal-title {
  margin-top: 10px;
  max-width: 850px;
  font-size: clamp(2.45rem, 4.7vw, 4.7rem);
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #e6e6e6;
  font-size: clamp(1rem, 1.7vw, 1.42rem);
  line-height: 1.45;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: auto;
  margin-top: 30px;
}

.hero-actions .btn {
  width: clamp(210px, 17vw, 242px);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 860px);
  margin-top: 14px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.social-strip::-webkit-scrollbar {
  display: none;
}

.social-strip a,
.social-strip .social-static {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(0, 0, 0, 0.28));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 10px 28px rgba(0, 0, 0, 0.24);
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.social-strip span {
  white-space: nowrap;
}

.social-strip a:hover,
.social-strip a:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(0, 0, 0, 0.2));
  transform: translateY(-1px);
}

.social-static {
  opacity: 0.82;
}

.social-strip svg,
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-icon-only {
  width: 38px;
  padding: 0;
}

.social-featured {
  color: #fff;
  border-color: rgba(213, 178, 109, 0.62);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(100%, 860px);
  margin-top: 24px;
  padding-top: 18px;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
}

.badge-card {
  position: relative;
  display: grid;
  place-items: start;
  gap: 6px;
  min-height: auto;
  padding: 0;
  text-align: left;
  border-right: 0;
}

.badge-card:not(:last-child)::after {
  position: absolute;
  top: 6px;
  right: -13px;
  bottom: 4px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.why-grid svg {
  width: 42px;
  height: 42px;
  color: #d5b26d;
  filter: drop-shadow(0 0 12px rgba(213, 178, 109, 0.4));
}

.process-list svg {
  width: 42px !important;
  height: 42px !important;
  color: #d5b26d;
  filter: drop-shadow(0 0 12px rgba(213, 178, 109, 0.4));
}

.stats-panel svg {
  width: 36px;
  height: 36px;
  color: #f2f2f2;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.stats-panel strong {
  text-transform: uppercase;
}

.section-heading p,
.service-card p,
.why-grid p,
.process-list p,
.review-card p,
.contact-copy p,
.site-footer p,
.site-footer li,
.stats-panel span {
  color: var(--muted);
  line-height: 1.55;
}

.section p:not(.eyebrow):not(.form-status),
.site-footer p {
  text-align: justify;
}

.value-number {
  color: rgba(213, 178, 109, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
}

.badge-card strong {
  color: #f5f5f5;
  font-size: clamp(0.86rem, 1.3vw, 1rem);
  text-transform: uppercase;
}

.badge-card span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.process-panel .metal-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.section-heading p {
  margin: 0;
  font-size: 1rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.74), rgba(6, 6, 6, 0.9));
box-shadow: var(--shadow);
}

.service-icon {
  position: absolute;
  top: auto;
  bottom: -32px;
  left: 50%;
  right: 16px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transform: translateX(-50%);
}

.service-card > div:last-child {
  padding: 22px;
  padding-top: 36px;
}

.service-icon::before {
  position: absolute;
  inset: 2px;
  z-index: -1;
  content: "";
  clip-path: inherit;
  background: #101010;
}

.service-card h3 {
  margin: 0 0 8px;
  color: #efefef;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.service-card p {
  max-width: 100%;
  margin: 0;
  font-size: 0.92rem;
}

.service-card > div:last-child {
  padding: 22px;
}

.service-media {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 200px;
}

.service-icon {
  position: absolute;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transform: none;
}

.service-icon::before {
  position: absolute;
  inset: 2px;
  z-index: -1;
  content: "";
  clip-path: inherit;
  background: #101010;
}

.service-card h3 {
  margin: 0 0 4px;
  color: #efefef;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.15;
}

.service-card p {
  max-width: 100%;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.service-card > div:last-child {
  padding: 16px 18px;
  padding-top: 20px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.85), rgba(5, 5, 5, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.service-gallery {
  position: relative;
  margin-top: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 18px;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-gallery::-webkit-scrollbar {
  display: none;
}

.service-gallery.is-interacting {
  cursor: grabbing;
}

.service-gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  min-width: max-content;
}

.service-gallery-item {
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  user-select: none;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.image-lightbox-trigger {
  cursor: zoom-in;
}

.service-card .image-lightbox-trigger {
  touch-action: manipulation;
}

.image-lightbox-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease;
}

.image-lightbox.is-visible {
  opacity: 1;
}

.image-lightbox-panel {
  position: relative;
  display: grid;
  width: min(100%, 1120px);
  max-height: calc(100svh - 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(24, 24, 24, 0.9);
}

.image-lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  max-height: calc(100svh - 44px);
}

.image-lightbox-figure img {
  width: 100%;
  max-height: calc(100svh - 112px);
  object-fit: contain;
  background: #050505;
}

.image-lightbox-caption {
  min-height: 44px;
  padding: 12px 56px 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

@keyframes service-reel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.why-panel,
.process-panel,
.stats-panel,
.contact-grid {
  margin-top: 28px;
  padding: 32px 24px;
  background: transparent;
  border: none;
}

.why-panel {
  padding: 32px 24px;
  text-align: center;
}

.why-panel .btn {
  margin-top: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.why-grid article {
  min-height: auto;
  padding: 24px 20px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.why-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.12rem;
}

.why-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.projects-section {
  padding-top: 64px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.84);
  box-shadow: var(--shadow);
}

.project-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.project-copy h3 {
  width: 100%;
  margin: 0 0 2px;
  color: #f2f2f2;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-align: center;
}

.project-copy span {
  color: #d9d9d9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-copy span + span {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.compare {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

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

.compare-base,
.compare-reveal {
  position: absolute;
  inset: 0;
}

.compare-reveal {
  width: var(--split);
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.compare-reveal img {
  width: calc(100% / (var(--split-number, 0.5)));
  max-width: none;
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.compare-handle svg {
  width: 22px;
  height: 22px;
}

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

.process-panel {
  padding: 16px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.process-list article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px 12px;
  border: none;
  border-radius: var(--radius);
  background: transparent;
}

.process-list h3 {
  margin: 0 0 4px;
  color: #f3f3f3;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.process-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stats-panel div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: center;
  min-height: 90px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.stats-panel div:last-child {
  border-right: 0;
}

.stats-panel svg {
  grid-row: span 2;
  width: 54px;
  height: 54px;
}

.stats-panel strong {
  align-self: end;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.stats-panel span {
  align-self: start;
  text-transform: uppercase;
}

.reviews-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.reviews-section .metal-title {
  margin-inline: auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.review-card {
  position: relative;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.86), rgba(5, 5, 5, 0.94));
  box-shadow: var(--shadow);
}

.review-card::after {
  position: absolute;
  top: 14px;
  right: 24px;
  content: "“";
  color: rgba(255, 255, 255, 0.35);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.stars {
  margin-bottom: 16px;
  color: #f3f3f3;
  font-size: 1rem;
}

.review-card p {
  min-height: 108px;
  margin: 0;
}

.review-person {
  display: grid;
  grid-template-columns: 54px auto 1fr;
  gap: 8px 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-person span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #101010;
  background: linear-gradient(145deg, #e8d1a0, #78623c);
  font-weight: 800;
}

.review-person strong {
  align-self: end;
}

.review-person small {
  align-self: start;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 26px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 0 0 1px rgba(213, 178, 109, 0.22), 0 0 36px rgba(213, 178, 109, 0.15), var(--shadow);
}

.contact-copy {
  align-self: center;
  min-width: 0;
}

.contact-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1rem;
}

.quote-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.quote-form .btn {
  justify-self: start;
  min-width: min(100%, 278px);
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  color: #f3f3f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.94));
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  min-height: 104px;
  padding-block: 14px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #969696;
}

.quote-form select {
  color: #aaa;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #e6d09b;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(213, 178, 109, 0.34);
  padding: 32px 0 18px;
  background: rgba(0, 0, 0, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr 0.8fr;
  gap: 46px;
}

.footer-brand .brand-mark {
  font-size: clamp(3.4rem, 7vw, 5rem);
}

.site-footer p {
  max-width: 300px;
  margin: 16px 0 22px;
}

.site-footer h2 {
  margin: 12px 0 18px;
  color: #e9e9e9;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer div:last-child ul {
  grid-template-columns: 1fr;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a,
.social-links span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-2);
  text-align: center;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #fff;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  gap: 9px;
  min-height: 54px;
  padding: 0 17px 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #36df73, #149d4b);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #42eb80, #10a04a);
}

.scroll-top {
  left: 50%;
  bottom: 24px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.scroll-top.is-visible:hover,
.scroll-top.is-visible:focus-visible {
  transform: translate(-50%, -2px);
  background: rgba(255, 255, 255, 0.16);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 14px;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .service-list,
  .project-list,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 56px 0;
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .header-tools {
    gap: 8px;
  }

  .brand-mark {
    font-size: 2.75rem;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .header-cta svg {
    display: none;
  }

  .header-phone,
  .language-toggle,
  .menu-toggle {
    height: 42px;
  }

  .header-phone,
  .menu-toggle {
    width: 42px;
  }

  .language-toggle {
    min-width: 68px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-content {
    min-height: 0;
  }

  .hero-text-group {
    padding-top: clamp(72px, 16svh, 140px);
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55) 52%, rgba(0, 0, 0, 0.95) 92%),
      url("../img/optimized/banner-interior.webp") 62% center / cover;
  }

  .metal-title {
    font-size: clamp(1.7rem, 6.5vw, 2.85rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 220px;
    gap: 10px;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .badge-card {
    min-height: auto;
    padding: 0;
    border-right: 0;
    font-size: 0.78rem;
  }

  .badge-card:not(:last-child)::after {
    right: -8px;
  }

.service-card {
    --service-image-height: 138px;
    --service-icon-size: 52px;
    min-height: 300px;
  }

  .service-card img {
    height: var(--service-image-height);
    min-height: 0;
  }

  .service-media {
    height: var(--service-image-height);
    min-height: 0;
  }

  .service-icon {
    top: auto;
    right: 12px;
    bottom: 8px;
    left: auto;
    z-index: 4;
    width: var(--service-icon-size);
    height: var(--service-icon-size);
    transform: none;
  }

  .service-card > div:last-child {
    padding: 18px 14px;
    text-align: left;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .service-gallery {
    margin-top: 22px;
    padding-block: 14px;
  }

  .service-gallery-track {
    gap: 12px;
  }

  .service-gallery-item {
    width: clamp(190px, 42vw, 260px);
  }

  .project-card {
    grid-template-rows: auto minmax(240px, 38vw);
    aspect-ratio: auto;
  }

  .project-copy {
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .compare {
    min-height: 240px;
    aspect-ratio: auto;
  }

  .process-list article {
    min-height: 190px;
    padding: 16px;
  }

  .process-list svg {
    width: 50px;
    height: 50px;
  }

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

  .stats-panel div {
    min-height: 104px;
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-tools {
    flex: 0 0 auto;
    gap: 7px;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .header-phone,
  .language-toggle,
  .menu-toggle {
    height: 40px;
  }

  .header-phone,
  .menu-toggle {
    width: 40px;
  }

  .header-phone svg {
    width: 19px;
    height: 19px;
  }

  .language-toggle {
    min-width: 62px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .menu-toggle span {
    width: 28px;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero .metal-title {
    margin-top: 18px;
    font-size: clamp(1.45rem, 7.2vw, 2.12rem);
    line-height: 1.08;
  }

  .hero-text-group {
    padding-top: clamp(112px, 24svh, 190px);
  }

  .hero-lead {
    max-width: calc(100vw - 24px);
    font-size: 0.86rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
    width: min(100%, 366px);
    gap: 8px;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 44px;
    gap: 7px;
    padding-inline: 10px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .hero-actions .btn svg {
    width: 17px;
    height: 17px;
  }

  .label-full {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

  .services-section > .container > .eyebrow,
  .projects-section > .container > .eyebrow,
  .process-panel > .eyebrow,
  .reviews-section > .container > .eyebrow,
  .contact-copy > .eyebrow,
  #services-title,
  #projects-title,
  .process-panel > .metal-title,
  #reviews-title,
  #contact-title {
    text-align: center;
    margin-inline: auto;
  }

  .section-heading {
    justify-items: center;
    text-align: center;
  }

  .services-intro {
    text-align: center;
    margin-inline: auto;
  }

  .why-grid article,
  .process-list article {
    align-items: flex-start;
    text-align: left;
  }

  .why-panel {
    padding-inline: 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .why-grid article {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 10px;
    width: 100%;
    min-height: 190px;
    padding: 18px 12px;
    text-align: center;
  }

  .why-grid article svg {
    grid-row: auto;
    width: 38px;
    height: 38px;
  }

  .why-grid h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.12;
  }

  .why-grid p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 14px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .project-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

.service-card {
    --service-image-height: 130px;
    --service-icon-size: 48px;
    min-height: 250px;
  }

  .service-card img {
    height: var(--service-image-height);
    min-height: 0;
  }

  .service-media {
    height: var(--service-image-height);
    min-height: 0;
  }

  .service-icon {
    top: auto;
    right: 10px;
    bottom: 8px;
    left: auto;
    z-index: 4;
    width: var(--service-icon-size);
    height: var(--service-icon-size);
    transform: none;
  }

  .service-card > div:last-child {
    padding: 14px 12px;
  }

  .service-card h3 {
    font-size: 0.9rem;
  }

  .service-card p {
    font-size: 0.78rem;
  }

  .service-gallery {
    margin-inline: -12px;
    margin-top: 18px;
  }

  .service-gallery-item {
    width: min(72vw, 260px);
  }

  .project-card {
    grid-template-rows: auto minmax(300px, 82vw);
    aspect-ratio: auto;
  }

  .project-copy h3 {
    font-size: 0.92rem;
  }

  .project-copy span {
    font-size: 0.62rem;
  }

  .compare {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .process-list {
    gap: 10px;
  }

  .process-list article {
    min-height: 176px;
    padding: 14px;
  }

  .process-list svg {
    justify-self: start;
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .process-list h3 {
    font-size: 0.9rem;
  }

  .process-list p {
    font-size: 0.78rem;
  }

  .review-card {
    min-height: 250px;
    padding: 16px;
  }

  .review-card p {
    font-size: 0.78rem;
  }

  .review-person {
    grid-template-columns: 42px 1fr;
  }

  .review-person span {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .stats-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-panel div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    min-height: 120px;
    padding: 14px 8px;
    text-align: center;
  }

  .stats-panel svg {
    grid-row: auto;
    width: 34px;
    height: 34px;
  }

  .stats-panel strong {
    font-size: 0.9rem;
  }

  .stats-panel span {
    font-size: 0.68rem;
  }

  .contact-grid {
    padding: 18px;
  }

  .quote-form .btn {
    font-size: 0.82rem;
    padding-inline: 12px;
    min-width: min(100%, 250px);
  }

  .footer-grid {
    gap: 20px;
  }

  .site-footer ul {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 18px;
    width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .scroll-top {
    bottom: 21px;
    width: 34px;
    height: 34px;
  }

  .scroll-top svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-gallery-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
