:root {
  --black: #050505;
  --white: #ffffff;
  --ink: #121212;
  --muted: #666;
  --line: #e8e8e8;
  --yellow: #f7e000;
  --blue: #0047ff;
  --red: #ff2d2d;
  --green: #00b86b;
  --pink: #ff3bb5;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: relative;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  padding: 10px clamp(18px, 4vw, 54px);
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  color: var(--black);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(128px, 12.5vw, 164px);
  min-width: 118px;
  line-height: 1;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}
.brand.footer-brand {
  width: clamp(150px, 16vw, 210px);
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.2vw, 18px);
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 800;
  white-space: nowrap;
}
.nav::-webkit-scrollbar { display: none; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.is-scrolled .header-cta { color: var(--white); background: var(--black); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: rgba(255,255,255,.14);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span + span { margin-top: 5px; }
.site-header.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% - 6px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 10px;
  color: var(--black);
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
}
.mobile-nav a {
  display: block;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.mobile-nav a:last-child { border-bottom: 0; }
.site-header.menu-open .mobile-nav { display: block; }

.hero {
  position: relative;
  min-height: calc(100svh - 63px);
  margin-top: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  background: var(--black);
  transition: opacity 2.4s ease-in-out, transform 12s ease-in-out;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.hero-slide-corporate img { object-position: 50% top; }
.hero-slide-commerce img {
  object-position: 68% center;
  transform: scale(1.18);
  transform-origin: center center;
}
.hero-slide-church img { object-position: 50% top; }
.hero-slide-placeholder {
  background:
    linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.22), rgba(0,0,0,.68)),
    linear-gradient(135deg, #111, #323232);
}
.placeholder-blue {
  background:
    radial-gradient(circle at 22% 26%, rgba(0,71,255,.72), transparent 28%),
    radial-gradient(circle at 82% 58%, rgba(255,59,181,.48), transparent 30%),
    linear-gradient(135deg, #080808, #202020 52%, #050505);
}
.placeholder-yellow {
  background:
    radial-gradient(circle at 24% 70%, rgba(247,224,0,.68), transparent 28%),
    radial-gradient(circle at 78% 34%, rgba(255,45,45,.5), transparent 31%),
    linear-gradient(135deg, #090909, #262626 58%, #050505);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 46%, rgba(0,0,0,.44) 72%, rgba(0,0,0,.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 32px));
  color: var(--white);
  padding: 0 0 clamp(42px, 6vh, 68px);
  margin: 0 auto;
  text-align: center;
  transition: transform .9s ease;
}
.center { text-align: center; }
.hero h1 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(30px, 3.45vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero p {
  margin: 12px auto 0;
  max-width: 460px;
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 700;
  line-height: 1.32;
  text-wrap: balance;
}
.typewriter {
  display: inline-block;
  min-width: min(100%, 26em);
  text-align: center;
}
.typewriter::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .82em;
  margin-left: .06em;
  background: currentColor;
  transform: translateY(.08em);
  animation: caretBlink .8s steps(1) infinite;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}
.kicker {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.kicker.dark { color: var(--muted); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { color: var(--black); background: var(--white); }
.btn-light:hover {
  color: var(--black);
  background: var(--yellow);
}
.btn-dark { color: var(--white); background: var(--black); }
.btn-dark:hover {
  color: var(--black);
  background: var(--yellow);
}
.btn-outline-dark {
  color: var(--black);
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 0;
}
.btn-outline-dark:hover {
  color: var(--white);
  background: var(--black);
}
.btn-icon {
  border-radius: 0;
  gap: 10px;
}
.btn-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.btn-dark .btn-icon img,
.btn-light.btn-icon img {
  mix-blend-mode: multiply;
}
.btn-ghost-light {
  color: var(--white);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.42);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.center-row { justify-content: center; }
.hero-actions {
  margin-top: clamp(16px, 2.4vh, 24px);
}
.hero-quote-btn {
  min-width: 236px;
  gap: 10px;
}
.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.media-slot {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
    linear-gradient(120deg, #161616, #343434 45%, #0d0d0d);
  position: relative;
  overflow: hidden;
}
.media-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(247,224,0,.42), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(0,71,255,.36), transparent 24%),
    radial-gradient(circle at 55% 84%, rgba(255,45,45,.3), transparent 24%);
  mix-blend-mode: screen;
  opacity: .65;
}
.image-corporate,
.image-commerce,
.image-church,
.image-events,
.image-sports {
  background-size: cover;
  background-position: center;
}
.image-corporate { background-image: url("hero-corporativo.png"); }
.image-commerce { background-image: url("hero-comercio-bar.png"); }
.image-church,
.image-events,
.image-sports { background-image: url("hero-igrejas-eventos.png"); }
.image-corporate::after,
.image-commerce::after,
.image-church::after,
.image-events::after,
.image-sports::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.68)),
    radial-gradient(circle at 72% 20%, rgba(247,224,0,.36), transparent 28%);
  mix-blend-mode: normal;
  opacity: 1;
}

.section-pad {
  padding: clamp(48px, 6vw, 86px) clamp(18px, 4vw, 56px);
}
.narrow {
  width: min(920px, 100%);
  margin: auto;
  text-align: center;
}
.statement h2,
.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(38px, 5.6vw, 86px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.statement {
  position: relative;
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(28px, 3.6vw, 48px);
  background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.statement .narrow {
  position: relative;
  z-index: 1;
}
.statement h2 span {
  position: relative;
  z-index: 1;
  color: var(--black);
  transition: color .2s ease;
}
.statement:hover h2 span {
  color: var(--black);
}
.statement h2 span::before {
  content: "";
  position: absolute;
  left: -0.22em;
  right: -0.22em;
  top: 50%;
  z-index: -1;
  height: .62em;
  border-radius: 999px;
  background: rgba(247,224,0,.72);
  transform: translateY(-50%) scaleX(.05);
  transform-origin: left center;
  opacity: 0;
  transition: transform .42s ease, opacity .25s ease;
}
.statement:hover h2 span::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}
.statement-cursor {
  display: none;
}
.statement p,
.quote-copy p {
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.statement + .categories {
  padding-top: clamp(28px, 3.4vw, 48px);
}

.products-section {
  position: relative;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 242, 143, .82) 0%, rgba(244, 236, 143, .64) 32%, rgba(139, 224, 207, .74) 100%);
  box-shadow: 0 20px 48px rgba(0,0,0,.08);
}
.products-layout {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(430px, 1.22fr);
  align-items: center;
  gap: clamp(26px, 5vw, 78px);
}
.products-copy {
  max-width: 520px;
  color: #171717;
}
.products-copy .kicker {
  margin-bottom: 14px;
}
.products-copy h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: .95;
  text-transform: uppercase;
}
.products-copy h2 strong,
.products-copy h2 em {
  font-style: normal;
  font-weight: 900;
}
.products-copy h2 span {
  display: block;
  font-weight: 650;
}
.products-copy p:not(.kicker) {
  max-width: 390px;
  margin: 20px 0 28px;
  color: rgba(23,23,23,.72);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 650;
  line-height: 1.42;
}
.products-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: none;
}
.products-showcase {
  position: relative;
  min-width: 0;
  padding: clamp(8px, 1.4vw, 16px) clamp(36px, 4vw, 58px);
}
.product-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.product-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  pointer-events: auto;
}
.product-controls button::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}
.product-controls button:first-child::before { transform: rotate(-135deg); margin-left: 4px; }
.product-controls button:last-child::before { transform: rotate(45deg); margin-right: 4px; }
.product-controls button:hover {
  transform: translateY(-2px);
  background: #d9279d;
  color: var(--white);
}
.product-controls button:disabled {
  opacity: .26;
  cursor: default;
  transform: none;
  background: rgba(255,255,255,.72);
}
.product-carousel {
  width: 100%;
  margin: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 68%);
  gap: clamp(18px, 2.8vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  transition: opacity .22s ease;
}
.product-carousel.is-sliding {
  opacity: .94;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-item {
  scroll-snap-align: start;
  text-align: center;
  min-width: 0;
  opacity: .72;
  transform: scale(.72);
  transform-origin: center left;
  transition: transform .55s ease, opacity .55s ease;
}
.product-item.is-active {
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
}
.product-item div {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 20%, #f6f6f6 0%, #d5d5d5 52%, #a8a8a8 100%);
  overflow: hidden;
  box-shadow: none;
}
.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-item h3 {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 16px 0 0;
  padding: 0 8px;
  color: #5f5f5f;
  text-shadow: none;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}
.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
  text-align: center;
}
.processes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.processes-title span,
.processes-title strong,
.processes-title em {
  font-style: normal;
}
.processes-title span {
  color: #4f4f4f;
  font-weight: 800;
}
.processes-title strong {
  color: #6c6c6c;
  font-weight: 700;
}
.processes-title em {
  color: var(--yellow);
  font-weight: 900;
}
.solutions-title span,
.solutions-title strong,
.solutions-title em {
  position: relative;
  z-index: 1;
  font-style: normal;
}
.solutions-title span {
  color: #4f4f4f;
  font-weight: 800;
}
.solutions-title em {
  color: #141414;
  font-weight: 900;
}
.solutions-title strong {
  color: #6b6b6b;
  font-weight: 700;
}
.solutions-title span::before {
  content: "";
  position: absolute;
  left: -0.22em;
  right: -0.22em;
  top: 52%;
  z-index: -1;
  height: .58em;
  border-radius: 999px;
  background: rgba(255,59,181,.42);
  transform: translateY(-50%) scaleX(.08);
  transform-origin: left center;
  opacity: 0;
  transition: transform .42s ease, opacity .25s ease;
}
.categories:hover .solutions-title span::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.category-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--black);
}
.image-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  grid-column: span 2;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #080808;
}
.image-card.tall {
  min-height: 0;
  grid-column: span 3;
}
.image-card.wide {
  grid-column: span 2;
  min-height: 0;
}
.card-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: #0b0b0b;
  transition: transform .55s ease, filter .55s ease;
}
.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.card-corporate .card-media img { object-position: 42% top; }
.card-commerce .card-media img { object-position: 48% top; }
.card-sacraments .card-media img { object-position: 48% top; }
.card-events .card-media img { object-position: 48% top; }
.card-sports .card-media img { object-position: 54% top; }
.card-media::after {
  background: none;
  mix-blend-mode: normal;
  opacity: 0;
}
.image-card:hover .card-media {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}
.card-copy {
  position: relative;
  z-index: 1;
  width: min(72%, 330px);
  margin: 0;
  padding: clamp(12px, 1.45vw, 20px);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.1));
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  transform: none;
  transition: transform .35s ease;
}
.image-card:hover .card-copy,
.image-card:focus-visible .card-copy {
  transform: translateY(0);
}
.card-copy p,
.banner-copy p {
  margin: 0 0 6px;
  font-size: clamp(11px, .85vw, 12px);
  font-weight: 800;
  line-height: 1.15;
}
.card-copy h3,
.banner-copy h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: .96;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.card-copy span {
  display: inline-flex;
  margin-top: 10px;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-shadow: none;
  opacity: .96;
  transform: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.image-card:hover .card-copy span,
.image-card:focus-visible .card-copy span {
  opacity: 1;
}
.image-card:hover .card-copy span { background: var(--yellow); }
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0);
  pointer-events: none;
  transition: border-color .25s ease;
}
.image-card:hover::after { border-color: rgba(255,255,255,.24); }

@media (hover: none) {
  .card-copy { transform: none; }
  .card-copy span {
    display: inline-flex;
  }
}
.accent-yellow .media-slot::after { background: radial-gradient(circle at 50% 35%, rgba(247,224,0,.62), transparent 38%); }
.accent-blue .media-slot::after { background: radial-gradient(circle at 50% 35%, rgba(0,71,255,.62), transparent 38%); }
.accent-red .media-slot::after { background: radial-gradient(circle at 50% 35%, rgba(255,45,45,.62), transparent 38%); }
.accent-green .media-slot::after { background: radial-gradient(circle at 50% 35%, rgba(0,184,107,.58), transparent 38%); }
.accent-pink .media-slot::after { background: radial-gradient(circle at 50% 35%, rgba(255,59,181,.58), transparent 38%); }
.image-card .card-media::after {
  background: none;
  opacity: 0;
}

.split-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(18px, 4vw, 56px) clamp(76px, 8vw, 120px);
}
.banner-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--white);
}
.banner-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.68));
}
.banner-copy {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 56px);
}

.impact-band {
  min-height: 64svh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vw, 120px) 18px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}
.impact-band h2 {
  width: min(1120px, 100%);
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(52px, 9vw, 140px);
  line-height: .86;
  text-transform: uppercase;
}

.process-list,
.quote-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-list { grid-template-columns: repeat(4, 1fr); }
.process-list article,
.quote-grid blockquote {
  margin: 0;
  padding: clamp(22px, 3vw, 42px);
  background: var(--white);
}
.process-list span,
.process-list strong {
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 900;
}
.process-list h3,
.process-list h3 {
  margin: 0 0 12px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
.process-list p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.process-shell {
  position: relative;
  width: min(var(--max), 100%);
  margin: auto;
}
.process-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.process-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.process-controls button::before,
.testimonial-controls button::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.process-controls button:first-child::before,
.testimonial-controls button:first-child::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.process-controls button:last-child::before,
.testimonial-controls button:last-child::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
.process-controls button:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.process-controls button:disabled {
  opacity: .26;
  cursor: default;
  transform: none;
}
.process-gallery {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(265px, calc((100% - 28px) / 3));
  gap: clamp(10px, 1vw, 14px);
  border: 0;
  background: transparent;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
}
.process-gallery::-webkit-scrollbar { display: none; }
.process-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  color: var(--white);
  cursor: pointer;
  scroll-snap-align: start;
  background: var(--black);
}
.process-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .65s ease, filter .65s ease;
}
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 54%, rgba(0,0,0,.58) 100%);
  z-index: 1;
}
.process-card:hover img {
  transform: scale(1.055);
  filter: contrast(1.05) saturate(1.05);
}
.process-card > div {
  position: absolute;
  left: clamp(20px, 2.6vw, 34px);
  right: clamp(20px, 2.6vw, 34px);
  bottom: clamp(16px, 2vw, 26px);
  z-index: 2;
}
.process-card h3 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: .96;
  text-transform: uppercase;
}
.process-card button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 0;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.process-card:hover button {
  opacity: 1;
  transform: translateY(0);
  background: var(--white);
}
.process-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.process-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.process-modal-panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(28px, 4vw, 54px);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.catalog-modal-panel {
  width: min(560px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 48px));
  overflow-y: auto;
  padding: clamp(22px, 3vw, 38px);
}
.process-modal-panel h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .94;
  text-transform: uppercase;
}
.catalog-modal-panel h2 {
  font-size: clamp(28px, 4vw, 46px);
}
.process-modal-panel p:not(.kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.catalog-modal-panel p:not(.kicker) {
  margin: 14px 0 18px;
  font-size: 16px;
  line-height: 1.45;
}
.process-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.portfolio {
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}
.portfolio-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(22px, 3vw, 38px);
}
.portfolio-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.portfolio-heading h2 {
  max-width: 920px;
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(36px, 5.8vw, 84px);
  line-height: .94;
  text-transform: uppercase;
}
.portfolio-heading h2 span {
  color: #5f5f5f;
}
.portfolio-heading h2 strong {
  color: var(--yellow);
  font-weight: 900;
}
.portfolio-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--black);
}
.portfolio-item {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #efefef;
  isolation: isolate;
  cursor: default;
}
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.portfolio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform .75s ease, filter .75s ease;
}
.portfolio-item::before {
  display: none;
}
.portfolio-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.06);
}
.portfolio-item:hover::after { opacity: 0; }

.catalog-hero {
  width: min(var(--max), 100%);
  margin: auto;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px) clamp(28px, 4vw, 52px);
}
.catalog-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(44px, 6.8vw, 98px);
  line-height: .9;
  text-transform: uppercase;
}
.catalog-hero h1 span {
  color: #5d5d5d;
  font-weight: 800;
}
.catalog-hero h1 strong {
  color: var(--yellow);
  font-weight: 900;
}
.catalog-hero p:not(.kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
}
.catalog-grid {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  margin: 0 auto clamp(58px, 7vw, 104px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.catalog-card,
.catalog-cta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,.12);
  padding: 0;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}
.catalog-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease, filter .55s ease;
}
.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.48) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,0) 62%);
  pointer-events: none;
}
.catalog-title {
  position: absolute;
  top: clamp(20px, 3vw, 38px);
  left: clamp(18px, 3vw, 36px);
  z-index: 3;
  display: block;
  max-width: min(72%, 390px);
  color: var(--white);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(24px, 3.2vw, 52px);
  font-weight: 900;
  line-height: .95;
  text-transform: none;
}
.catalog-title small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.86);
  font-size: .48em;
  font-weight: 750;
  line-height: 1.05;
}
.catalog-ghost {
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 2;
  max-width: 82%;
  color: rgba(255,255,255,.09);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(58px, 9vw, 150px);
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
  pointer-events: none;
}
.catalog-more {
  position: absolute;
  left: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.catalog-card:hover img {
  transform: scale(1.025);
  filter: contrast(1.04) saturate(1.04);
}
.catalog-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 68px);
  color: var(--white);
  text-decoration: none;
}
.catalog-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(247,224,0,.22), transparent 34%),
    linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
}
.catalog-cta-card span,
.catalog-cta-card strong,
.catalog-cta-card em {
  position: relative;
  z-index: 1;
}
.catalog-cta-card span {
  max-width: 360px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-cta-card strong {
  max-width: 100%;
  margin: 16px 0 28px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(30px, 3.45vw, 54px);
  line-height: .94;
  text-transform: uppercase;
  overflow-wrap: normal;
}
.catalog-cta-card em {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--black);
  background: var(--yellow);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-stamps {
  margin: 16px 0 18px;
  padding: 16px;
  background: #f4f4f4;
}
.catalog-stamps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
}
.catalog-stamps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.catalog-modal-btn {
  width: auto;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 0;
}
.catalog-availability {
  margin: -4px 0 18px;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-banner {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 78px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #0c1723;
}
.brand-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.48) 72%, rgba(0,0,0,.62) 100%);
}
.brand-banner > div {
  position: relative;
  z-index: 1;
  width: min(480px, 46%);
  margin-left: auto;
}
.brand-banner p {
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.brand-banner h2 {
  margin: 0 0 24px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: .95;
  text-transform: uppercase;
}
.brand-banner h2 span {
  display: block;
  color: var(--white);
  font-weight: 900;
}
.brand-banner h2 strong {
  display: block;
  color: #2f6cff;
  font-weight: 900;
}
.banner-btn {
  min-height: 44px;
  border-radius: 0;
  padding: 0 22px;
  color: var(--black);
  background: var(--white);
}

.testimonials {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}
.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  text-align: left;
}
.testimonials-heading h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.8vw, 68px);
}
.forms-note {
  max-width: 230px;
  margin: 0;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}
.testimonial-shell {
  position: relative;
  width: min(var(--max), 100%);
  margin: auto;
}
.testimonial-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.testimonial-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.testimonial-controls button:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}
.testimonial-controls button:disabled {
  opacity: .26;
  cursor: default;
  transform: none;
  background: rgba(255,255,255,.72);
}
.testimonial-carousel {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 2px) / 3));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-carousel.is-sliding { opacity: .94; }
.testimonial-carousel blockquote {
  min-height: 210px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
  line-height: 1.26;
  text-align: left;
  hyphens: none;
}
.testimonial-carousel .quote-text {
  display: block;
  color: var(--black);
}
.testimonial-carousel mark {
  position: relative;
  z-index: 1;
  color: #171717;
  background: transparent;
  font-weight: 900;
}
.testimonial-carousel mark::before {
  content: "";
  position: absolute;
  left: -.12em;
  right: -.12em;
  bottom: .02em;
  z-index: -1;
  height: .36em;
  border-radius: 999px;
  background: rgba(247, 224, 0, .82);
}
.testimonial-carousel cite {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--yellow);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  text-align: left;
}

.faq-list {
  width: min(980px, 100%);
  margin: auto;
  border-top: 1px solid var(--line);
}
details { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 900;
}
details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(360px, 540px);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.quote-copy {
  min-width: 0;
  max-width: 680px;
}
.quote-copy p { color: rgba(255,255,255,.72); }
.lp-final-form .quote-copy h2 {
  width: min(100%, 18ch);
  max-width: 100%;
  font-size: clamp(32px, 3.55vw, 56px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.lp-final-form .quote-copy p {
  max-width: 520px;
  margin-left: 0;
}
.quote-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  padding: 16px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  outline: 0;
}
.quote-form select option { color: var(--black); }
.quote-submit {
  justify-self: start;
  min-height: 46px;
  border-radius: 0;
  padding: 0 20px;
  gap: 10px;
}
.quote-submit svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.form-email-link {
  justify-self: start;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 320px) auto;
  gap: 36px;
  padding: 44px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.footer-brand-wrap {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer p,
.footer address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}
.footer nav {
  display: grid;
  gap: 12px;
  font-weight: 800;
}
.footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.instagram-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 55%, rgba(247,224,0,.18) 100%);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.instagram-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.24);
}
.instagram-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
}
.instagram-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.instagram-card-copy {
  display: grid;
  gap: 4px;
}
.instagram-card-copy strong {
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}
.instagram-card-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.instagram-card-copy em {
  color: #8a7800;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,0,0,.26);
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lp-hero {
  min-height: 82svh;
}
.lp-blank-image {
  background: #f2f2f2;
}
.lp-blank-image::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.28)),
    linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,0) 42%);
  mix-blend-mode: normal;
  opacity: 1;
}
.lp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  width: min(var(--max), 100%);
  margin: auto;
}
.lp-intro p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}
.mini-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-card {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 28px;
  color: var(--white);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.mini-card .media-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.mini-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}
.lp-proof {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.lp-proof article {
  padding: clamp(24px, 3vw, 44px);
  background: var(--white);
}
.lp-proof strong {
  display: block;
  margin-bottom: 16px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .9;
}
.lp-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.lp-image-band {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  min-height: clamp(360px, 52vw, 720px);
  margin: 0 auto clamp(76px, 8vw, 120px);
  background: #f3f3f3;
  border: 1px solid var(--line);
}
.lp-quote-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.lp-quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.lp-quote-form input,
.lp-quote-form textarea,
.lp-quote-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  padding: 16px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  outline: 0;
}
.lp-quote-form select option { color: var(--black); }
.whatsapp-btn {
  gap: 10px;
}
.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lp-clean-hero {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  margin: clamp(28px, 4vw, 58px) auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
.lp-clean-hero-alt {
  grid-template-columns: 1fr;
}
.lp-banner-visual {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 52vw, 720px);
  background:
    var(--lp-banner-overlay, linear-gradient(135deg, rgba(255,255,255,0), rgba(255,255,255,0))),
    var(--lp-banner-image, radial-gradient(circle at 18% 22%, rgba(247,224,0,.45), transparent 24%)),
    linear-gradient(135deg, #e9e9e9, #bdbdbd 52%, #f7f7f7);
  background-size: cover;
  background-position: var(--lp-banner-position, center);
  border: 1px solid var(--line);
}
.lp-banner-visual.second {
  background:
    var(--lp-banner-overlay, linear-gradient(135deg, rgba(255,255,255,0), rgba(255,255,255,0))),
    var(--lp-banner-image, radial-gradient(circle at 80% 24%, rgba(255,92,202,.34), transparent 26%)),
    linear-gradient(135deg, #f2f2f2, #c9c9c9 56%, #ffffff);
  background-size: cover;
  background-position: var(--lp-banner-position, center);
}
.lp-banner-visual::after {
  content: none;
}
.lp-banner-copy {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 58px);
  width: min(360px, calc(100% - 52px));
  color: var(--lp-copy-color, #fff);
  text-shadow: var(--lp-copy-shadow, 0 2px 18px rgba(0,0,0,.45));
}
.lp-banner-copy.top {
  top: clamp(26px, 4vw, 58px);
  bottom: auto;
}
.lp-banner-copy.right {
  left: auto;
  right: clamp(26px, 4vw, 58px);
}
.lp-banner-copy.center-y {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.lp-banner-copy.bottom-left {
  top: auto;
  right: auto;
  left: clamp(26px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 58px);
}
.lp-banner-copy.top-left {
  top: clamp(26px, 4vw, 58px);
  right: auto;
  left: clamp(26px, 4vw, 58px);
  bottom: auto;
}
.lp-banner-copy.top-right {
  top: clamp(26px, 4vw, 58px);
  left: auto;
  right: clamp(26px, 4vw, 58px);
  bottom: auto;
}
.lp-banner-copy.narrow {
  width: min(235px, calc(100% - 52px));
}
.lp-banner-copy.narrow strong {
  font-size: clamp(38px, 4.1vw, 56px);
}
.lp-banner-copy.tight {
  width: min(205px, calc(100% - 52px));
}
.lp-banner-copy.tight strong {
  font-size: clamp(34px, 3.7vw, 50px);
}
.lp-banner-copy.dark,
.lp-banner-copy.on-light {
  --lp-copy-color: #121212;
  --lp-copy-shadow: 0 1px 0 rgba(255,255,255,.6);
}
.lp-banner-copy.on-dark {
  --lp-copy-color: #fff;
  --lp-copy-shadow: 0 3px 22px rgba(0,0,0,.72);
}
.lp-banner-copy p {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
}
.lp-banner-copy strong {
  display: block;
  color: inherit;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: .9;
  text-transform: uppercase;
}
.lp-banner-copy span {
  color: var(--yellow);
}
.lp-banner-copy.on-light span,
.lp-banner-copy.dark span {
  color: #5f5f5f;
}
.lp-banner-copy.on-dark span {
  color: var(--yellow);
}
.lp-banner-copy a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 24px;
  color: var(--white);
  background: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: none;
}
.lp-banner-copy.on-dark a {
  color: var(--black);
  background: var(--white);
}
.lp-banner-copy.on-light a,
.lp-banner-copy.dark a {
  color: var(--white);
  background: var(--black);
}
.lp-argument-section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  margin: clamp(36px, 5vw, 72px) auto;
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.lp-argument-lead h2 {
  margin: 0;
  color: #111;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: .94;
  text-transform: uppercase;
}
.lp-argument-lead p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}
.lp-argument-lead .button-row {
  margin-top: 26px;
}
.lp-argument-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.lp-argument-card {
  padding: clamp(20px, 2.8vw, 34px);
  background: #fff;
}
.lp-argument-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.lp-argument-card h3 {
  margin: 8px 0 10px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.02;
  text-transform: uppercase;
}
.lp-argument-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.lp-service-strip {
  padding: clamp(28px, 4vw, 58px) clamp(18px, 4vw, 56px);
  background: #0b0b0b;
  color: var(--white);
  text-align: center;
}
.lp-service-strip p {
  width: min(1040px, 100%);
  margin: auto;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}
.lp-service-strip span {
  color: var(--yellow);
}
.lp-clean-copy h1,
.lp-clean-copy h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(38px, 5.2vw, 82px);
  line-height: .94;
  text-transform: uppercase;
}
.lp-clean-copy h1 span,
.lp-clean-copy h2 span {
  color: #5b5b5b;
  font-weight: 900;
}
.lp-clean-copy p:not(.kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}
.lp-trigger-strip {
  padding: clamp(34px, 4.6vw, 64px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4f4f4, #fff);
  text-align: center;
}
.lp-trigger-strip p {
  width: min(980px, 100%);
  margin: auto;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(28px, 4.2vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
}
.lp-trigger-strip span {
  color: #5f5f5f;
  font-weight: 700;
}
.lp-trigger-strip strong {
  color: #d75ab9;
  font-weight: 800;
}
.lp-final-form {
  margin-top: clamp(36px, 5vw, 72px);
}

@media (max-width: 1380px) {
  .quote-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .quote-copy,
  .lp-final-form .quote-copy {
    max-width: 760px;
  }
  .lp-final-form .quote-copy h2 {
    width: min(100%, 20ch);
    font-size: clamp(34px, 5.2vw, 54px);
  }
  .lp-final-form .quote-copy p {
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .nav {
    display: flex;
    justify-content: start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .menu-toggle { display: none; }
  .hero {
    min-height: calc(100svh - 63px);
    margin-top: 0;
  }
  .hero-content {
    width: min(760px, calc(100% - 32px));
  }
  .hero h1 {
    font-size: clamp(30px, 5.4vw, 48px);
  }
  .process-list,
  .steps,
  .quote-grid,
  .mini-grid,
  .lp-proof,
  .lp-intro,
  .quote-section,
  .footer,
  .split-banner {
    grid-template-columns: 1fr;
  }
  .brand-banner {
    min-height: 420px;
  }
  .brand-banner > div {
    width: min(430px, 52%);
  }
  .brand-banner h2 {
    font-size: clamp(32px, 5.8vw, 58px);
  }
  .products-layout {
    grid-template-columns: minmax(240px, .78fr) minmax(430px, 1.22fr);
    gap: clamp(24px, 4vw, 48px);
  }
  .products-copy {
    max-width: 460px;
  }
  .products-copy h2 {
    font-size: clamp(34px, 5vw, 58px);
  }
  .products-showcase {
    padding-inline: 48px;
  }
  .process-gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 38vw);
    overflow-x: auto;
  }
  .testimonials-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonials-heading h2 {
    margin: auto;
  }
  .forms-note {
    max-width: none;
    text-align: center;
  }
  .testimonial-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 52vw);
    overflow-x: auto;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }
  .lp-clean-hero,
  .lp-clean-hero-alt {
    grid-template-columns: 1fr;
    overflow-x: visible;
    align-items: start;
  }
  .lp-argument-section {
    grid-template-columns: 1fr;
  }
  .portfolio-item.big,
  .portfolio-item.wide {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
  .footer { gap: 20px; }
  .card-copy {
    width: min(70%, 280px);
    padding: 12px;
  }
  .card-copy h3 {
    font-size: clamp(16px, 2.2vw, 23px);
  }
  .card-copy span {
    min-height: 32px;
    font-size: 13px;
    padding: 0 12px;
  }
}

@media (max-width: 760px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .image-card,
  .image-card.tall,
  .image-card.wide {
    grid-column: auto;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .portfolio-item img {
    object-fit: contain;
    background: #efefef;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 16px 12px;
    background: rgba(255,255,255,.96);
  }
  .site-header.is-scrolled {
    background: rgba(255,255,255,.96);
  }
  .header-actions { display: none; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .menu-toggle { width: 40px; height: 40px; }
  .brand {
    width: 150px;
    min-width: 140px;
    justify-self: start;
  }
  .brand img { max-height: 50px; }
  .nav {
    width: 100%;
    justify-content: start;
    gap: 18px;
    font-size: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hero {
    min-height: calc(100svh - 92px);
    margin-top: 0;
    align-items: end;
  }
  .hero-slide img {
    object-position: center top;
  }
  .hero-slide-corporate img { object-position: 50% top; }
  .hero-slide-commerce img { object-position: 64% top; }
  .hero-slide-church img { object-position: 62% top; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.1) 42%, rgba(0,0,0,.78) 76%, rgba(0,0,0,.92) 100%),
      radial-gradient(circle at 50% 28%, rgba(0,0,0,0), rgba(0,0,0,.38) 68%);
  }
  .hero-content {
    width: min(420px, calc(100% - 32px));
    padding: 52svh 0 56px;
  }
  .hero .kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1;
  }
  .hero p {
    min-height: 48px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.25;
  }
  .typewriter {
    min-width: 0;
    text-align: center;
  }
  .hero-actions { margin-top: 26px; }
  .hero-quote-btn { min-width: 0; }
  .button-row,
  .center-row { justify-content: stretch; }
  .btn { width: 100%; }
  .quote-submit,
  .banner-btn {
    width: auto;
    max-width: 100%;
  }
  .brand-banner {
    min-height: 520px;
    align-items: end;
  }
  .brand-banner img {
    object-position: 36% center;
  }
  .brand-banner::after {
    background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.1) 42%, rgba(0,0,0,.78) 100%);
  }
  .brand-banner > div {
    width: min(440px, 100%);
    margin: 0;
  }
  .brand-banner h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .products-section {
    padding: 32px 16px 40px;
    overflow: hidden;
  }
  .products-layout {
    width: min(100%, 520px);
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .products-copy {
    max-width: none;
    text-align: left;
  }
  .products-copy h2 {
    font-size: clamp(34px, 10vw, 42px);
  }
  .products-copy p:not(.kicker) {
    margin: 16px 0 22px;
    max-width: 340px;
    font-size: 16px;
  }
  .products-cta {
    min-height: 46px;
    width: 100%;
    padding: 0 18px;
    font-size: 12px;
  }
  .products-showcase {
    display: none;
  }
  .process-gallery {
    grid-auto-columns: minmax(238px, 76vw);
  }
  .testimonial-carousel {
    grid-auto-columns: minmax(260px, 82vw);
  }
  .catalog-hero {
    padding-top: 34px;
  }
  .catalog-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .catalog-grid {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(360px, 360px));
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.35) rgba(0,0,0,.08);
  }
  .catalog-grid::-webkit-scrollbar {
    height: 7px;
  }
  .catalog-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,.08);
  }
  .catalog-grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.35);
    border-radius: 999px;
  }
  .catalog-card,
  .catalog-cta-card {
    aspect-ratio: 1 / 1;
  }
  .catalog-title {
    font-size: 28px;
  }
  .catalog-ghost {
    font-size: 70px;
  }
  .catalog-cta-card strong {
    font-size: 34px;
  }
  .lp-clean-hero {
    width: auto;
    margin: 24px 16px;
  }
  .lp-clean-copy {
    min-width: 0;
  }
  .lp-banner-visual {
    min-height: 360px;
    background-size: cover;
  }
  .lp-banner-copy {
    width: min(340px, calc(100% - 32px));
  }
  .lp-banner-copy strong {
    font-size: clamp(36px, 9vw, 48px);
    line-height: .92;
  }
  .lp-banner-copy p {
    font-size: 13px;
  }
  .lp-banner-copy a {
    min-height: 44px;
    padding-inline: 18px;
  }
  .lp-argument-section {
    width: auto;
    margin: 28px 16px;
  }
  .lp-clean-copy h1,
  .lp-clean-copy h2,
  .lp-clean-copy p {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .lp-clean-copy h1,
  .lp-clean-copy h2 {
    font-size: clamp(28px, 8.1vw, 42px);
    line-height: 1.02;
  }
  .lp-final-form .quote-copy h2 {
    width: min(100%, 21ch);
    font-size: clamp(30px, 8.3vw, 42px);
    line-height: 1.05;
  }
  .lp-trigger-strip p {
    font-size: clamp(26px, 8.4vw, 42px);
  }
  .card-copy {
    width: min(76%, 300px);
    padding: 14px;
  }
  .card-copy h3 {
    font-size: 22px;
  }
  .card-copy span {
    width: auto;
  }
  .image-card,
  .image-card.tall,
  .banner-card,
  .mini-card { min-height: 0; }
  .banner-card,
  .mini-card { min-height: 420px; }
  .process-card {
    min-height: 0;
    aspect-ratio: 3 / 4.15;
  }
  .quote-section { padding-top: 92px; }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .hero-slide,
  .hero-slide img,
  .image-card img,
  .portfolio-item img,
  .process-card img,
  .catalog-card img {
    transition-duration: .2s !important;
    filter: none !important;
  }
  .hero-slide img,
  .image-card:hover img,
  .portfolio-item:hover img,
  .process-card:hover img,
  .catalog-card:hover img {
    transform: none !important;
  }
  .statement-cursor {
    display: none;
  }
  .floating-whatsapp,
  .product-controls button,
  .process-controls button,
  .testimonial-controls button {
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
    backdrop-filter: none;
  }
}
