:root {
  --red: #d82018;
  --red-bright: #f50f0f;
  --red-hot: #ff2400;
  --gray: #6e6b6b;
  --ink: #1a1a1a;
  --muted: #5c5a5a;
  --line: #e6e4e3;
  --paper: #f6f4f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.12);
  --radius: 18px;
  --header: 84px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Oswald", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  line-height: 1.12;
}

h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2.lead-title {
  font-size: clamp(1.28rem, 2.35vw, 1.72rem);
  line-height: 1.2;
  letter-spacing: 0.015em;
  overflow-wrap: normal;
  word-break: normal;
  max-width: 22em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 58ch;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 58px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray);
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s transform, 0.2s background, 0.2s color, 0.2s border-color;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red-bright);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-hot);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-line {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.45) 48%, rgba(12, 12, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.15), rgba(12, 12, 12, 0.55));
}

.hero-copy {
  padding: 80px 0 120px;
  max-width: min(740px, 100%);
  min-width: 0;
}

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero:not(.compact) h1 {
  font-size: clamp(1.65rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  max-width: 18ch;
}

.hero:not(.compact) .eyebrow {
  font-size: clamp(0.58rem, 1.15vw, 0.72rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 700px) {
  .hero:not(.compact) .eyebrow {
    white-space: normal;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.swoosh {
  position: absolute;
  right: -80px;
  top: 40px;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  border: 18px solid rgba(245, 15, 15, 0.35);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(28deg);
  pointer-events: none;
}

.stats {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.02em;
  margin: 0;
}

.stat span {
  color: var(--gray);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 40px;
  border: 3px solid var(--red);
  border-radius: 24px;
  z-index: -1;
}

.checks {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}

.checks li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: none;
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 2px var(--red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #efecec;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 22px 22px 26px;
}

.card-body span {
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  max-width: 100%;
  min-width: 0;
}

.filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--gray);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
}

.filter.is-on,
.filter:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Antes de que JS paginé: no mostrar un muro de 249 fotos */
.gallery-grid:not(.is-ready) .gal-item:nth-child(n + 19) {
  display: none;
}

.gal-item {
  position: relative;
  border: 0;
  padding: 0;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
  width: 100%;
  font: inherit;
  color: #fff;
  text-align: left;
}

.gal-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.gal-item.is-hidden {
  display: none;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-more-wrap .btn[hidden] {
  display: none;
}

.clients-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clients-cloud span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gray);
}

.clients-cloud span.hot {
  color: var(--red);
  border-color: #f5c2c0;
  background: #fff6f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-card,
.form {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list span {
  font-weight: 800;
}

.contact-list small {
  display: block;
  color: var(--gray);
  font-weight: 600;
}

.map {
  border: 0;
  width: 100%;
  height: 240px;
  border-radius: 16px;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  font-weight: 800;
  font-size: 0.88rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--paper);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.form-msg.ok {
  display: block;
  background: #e9f8ee;
  color: #146c36;
}

.form-msg.err {
  display: block;
  background: #fdecec;
  color: #a11616;
}

.footer {
  background: #ffffff;
  color: var(--ink);
  padding: 64px 0 0;
  margin-top: 8px;
  position: relative;
  z-index: 3;
  box-shadow: 0 -16px 48px rgba(26, 26, 26, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 0.7fr 1fr minmax(240px, 1.15fr);
  gap: 40px 36px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 22px;
  padding: 0 0 12px;
  line-height: 1.15;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4em;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--red-hot));
  border-radius: 2px;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a {
  font-weight: 700;
  transition: color 0.15s;
}

.footer a:hover {
  color: var(--red);
}

.footer .logo img,
.footer-logo img {
  width: 280px;
  max-width: 100%;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
}

.footer-tag {
  margin: 18px 0 0;
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}

.footer-links a::before {
  content: "";
  flex: 0 0 0.55em;
  width: 0.55em;
  height: 0.55em;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  opacity: 0.75;
  transform: translateX(0);
  transition: transform 0.2s ease, opacity 0.15s;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(4px);
}

.footer-contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.footer-contact a::before {
  content: "";
  flex: 0 0 1.05em;
  width: 1.05em;
  height: 1.05em;
  margin-top: 0.12em;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  opacity: 0.88;
}

/* Ubicación */
.footer-contact a[href*="maps"]::before,
.footer-contact a[href*="goo.gl"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

/* Teléfono */
.footer-contact a[href^="tel:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v2a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3.1-8.7A2 2 0 0 1 4.1 2h2a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L7.1 9.9a16 16 0 0 0 6 6l1.5-1.1a2 2 0 0 1 2.1-.4c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v2a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3.1-8.7A2 2 0 0 1 4.1 2h2a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L7.1 9.9a16 16 0 0 0 6 6l1.5-1.1a2 2 0 0 1 2.1-.4c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
}

/* Correo */
.footer-contact a[href^="mailto:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.footer-contact a:hover::before {
  opacity: 1;
}

.footer-map iframe {
  width: 100%;
  height: 198px;
  border: 0;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding: 18px 0 22px;
}

.footer-bottom p,
.copy {
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 600;
}

.firma {
  font-size: 0.7rem;
}

.firma a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b0adad;
  font-weight: 500;
}

.firma a:hover {
  color: #8a8787;
}

.firma svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-map {
    grid-column: 1 / -1;
  }
  .footer-map iframe {
    height: 220px;
  }
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.wa svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  place-items: center;
  z-index: 70;
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: var(--header) 16px auto;
    z-index: 60;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    display: none;
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header) - 24px);
    overflow: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a.is-active {
    background: #f7f4f4;
  }

  .nav a.is-active::after {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .header .btn {
    display: none;
  }

  .carousel-track .product {
    flex-basis: calc((100% - 18px) / 2);
  }

  .stats-grid,
  .services-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --header: 72px;
  }

  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .logo img {
    height: 46px;
  }

  .hero {
    min-height: calc(100svh - var(--header));
  }

  .hero-copy {
    padding: 40px 0 88px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .swoosh {
    display: none;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 4px;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
  }

  .map,
  .footer-map iframe {
    height: 220px;
  }

  .footer .logo img,
  .footer-logo img {
    width: min(220px, 100%);
  }

  .wa {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .footer {
    padding-bottom: 88px;
  }

  .stats {
    margin-top: -36px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 10px 8px;
    gap: 1px;
    text-align: center;
    align-items: center;
  }

  .stat b {
    font-size: 1.4rem;
  }

  .stat span {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .services-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .photo-frame img {
    height: 280px;
  }

  .section {
    padding: 64px 0;
  }

  .clients-cloud {
    gap: 8px;
  }
}


.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.materials span {
  background: #fff;
  border: 1px dashed #e0dcdc;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gray);
}


.hero.compact {

  min-height: 340px;

}

.hero.compact .hero-copy {

  padding: 72px 0 48px;

  max-width: 760px;

}

.breadcrumb {

  margin: 0 0 10px;

  font-weight: 800;

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.78);

}

.breadcrumb a:hover {

  color: #fff;

}

.cta-band {

  background: #141414;

  color: #fff;

  padding: 56px 0;

}

.cta-band h2 {

  color: #fff;

}

.cta-band p {

  color: rgba(255, 255, 255, 0.78);

  margin: 0;

}

.cta-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

}

.eyebrow.light {

  color: #ff8a80;

}

.eyebrow.light::before {

  background: #ff8a80;

}

.more-link {

  margin: 28px 0 0;

}

.checks.two {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px 28px;

}

@media (max-width: 700px) {
  .cta-inner,
  .checks.two {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero.compact {
    min-height: 0;
  }

  .hero.compact .hero-copy {
    padding: 48px 0 36px;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #efecec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product.is-ready {
  border-color: #f5c2c0;
}
.product.is-hidden {
  display: none;
}
.product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.product img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.product .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.product .card-body p {
  flex: 1;
  overflow-wrap: anywhere;
}
.product .btn {
  align-self: flex-start;
  min-height: 40px;
  padding: 0 16px;
  margin-top: 6px;
}
.ficha-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 36px;
  align-items: start;
}
.ficha-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 10px;
  position: sticky;
  top: calc(var(--header) + 16px);
}
.ficha-cta .btn {
  width: 100%;
}
@media (max-width: 980px) {
  .shop-grid,
  .ficha-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .shop-grid,
  .ficha-grid {
    grid-template-columns: 1fr;
  }
  .ficha-cta {
    position: static;
  }
  .product img {
    height: 200px;
  }
}


.product .card-body .btn {
  font-family: var(--font);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 800;
}
.product .card-body .btn-red {
  color: #fff;
}
.section-head,
.lead,
p {
  overflow-wrap: break-word;
}

.home-carousel,
.carousel-viewport,
.shop-grid,
.gallery-grid,
.ficha-grid,
.contact-grid,
.split {
  min-width: 0;
  max-width: 100%;
}
.home-carousel {
  position: relative;
  padding: 0 4px 8px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
  will-change: transform;
}
.carousel-track .product {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}
.carousel-btn {
  position: absolute;
  top: 44%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }
.carousel-btn:hover { background: var(--red-bright); color: #fff; }
@media (max-width: 980px) {
  .carousel-track .product {
    flex-basis: calc((100% - 18px) / 2);
  }
}
@media (max-width: 700px) {
  .home-carousel {
    padding: 0 0 12px;
  }
  .carousel-track .product {
    flex-basis: 100%;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    top: 88px;
  }
  .carousel-btn.prev { left: 6px; }
  .carousel-btn.next { right: 6px; }
}
