@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap");

@font-face {
  font-family: "Typold";
  src: url("assets/fonts/Typold-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Paleta oficial de 614 Design. */
  --brand-charcoal: #231f20;
  --brand-red: #ce0f3d;
  --brand-silver: #b0b7bc;
  --ink: var(--brand-charcoal);
  --paper: #ffffff;
  --soft-paper: #f6f7f7;
  --silver-soft: #eceeef;
  --line: #d8dcde;
  --muted: #686466;
  --header-height: 78px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --primary-title: "Typold", "Poppins", "Arial Black", sans-serif;
  --headline: "Poppins", "Arial Black", sans-serif;
  --display: "Space Grotesk", "Arial Black", sans-serif;
  --body: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

main :is(h1, h2, h3) {
  font-family: var(--primary-title) !important;
  font-weight: 700 !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgb(20 20 18 / 5%);
}

body:has(.hero) .site-header,
body:has(.banner-hero) .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

body:has(.hero) .site-header,
body:has(.banner-hero) .site-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--paper);
  border-color: transparent;
  box-shadow: none;
}

body:has(.hero) .site-header .language-switch,
body:has(.hero) .site-header .language-switch .is-active,
body:has(.banner-hero) .site-header .language-switch,
body:has(.banner-hero) .site-header .language-switch .is-active {
  color: var(--paper);
}

.header-frame {
  position: relative;
  width: min(100%, 1600px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: var(--header-height);
  grid-template-areas: "brand nav utilities commerce";
  align-items: center;
  column-gap: clamp(24px, 4vw, 72px);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}

.brand-logo-frame {
  position: relative;
  display: block;
  width: 90px;
  height: 63px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  top: -14px;
  left: -10px;
  width: 110px;
  max-width: none;
  height: 110px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: inline-flex;
}

.brand-number {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.075em;
}

.registration-dots {
  position: absolute;
  right: -7px;
  top: -7px;
  width: 13px;
  height: 13px;
}

.registration-dots i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.registration-dots i:nth-child(1) {
  left: 0;
  bottom: 0;
  background: var(--brand-charcoal);
}

.registration-dots i:nth-child(2) {
  top: 0;
  right: 0;
  background: var(--brand-red);
}

.registration-dots i:nth-child(3) {
  right: 0;
  bottom: 0;
  background: var(--brand-silver);
}

.brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.desktop-nav {
  grid-area: nav;
  justify-self: center;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.25vw, 58px);
}

.desktop-nav a {
  position: relative;
  display: flex;
  height: 100%;
  padding-top: 1px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.shop-link span {
  display: inline-block;
  margin-left: 2px;
  font-size: 10px;
  transition: transform 180ms ease;
}

.shop-link:hover span {
  transform: translate(2px, -2px);
}

.utility-actions {
  grid-area: utilities;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch,
.wishlist-button,
.cart-button,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  color: #93938f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.62;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-flag {
  display: block;
  width: 18px;
  height: 12px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgb(35 31 32 / 14%);
}

.language-switch .is-active {
  color: var(--ink);
  opacity: 1;
}

.wishlist-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
}

.wishlist-button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: fill 180ms ease, stroke 180ms ease, transform 180ms ease;
}

.wishlist-button:hover svg,
.wishlist-button:focus-visible svg {
  fill: var(--brand-red);
  stroke: var(--brand-red);
  transform: scale(1.06);
}

.cart-button {
  position: relative;
  justify-self: end;
  display: flex;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.commerce-actions {
  grid-area: commerce;
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: -1px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--paper);
  font-size: 9px;
  font-weight: 700;
}

.menu-toggle {
  grid-area: menu;
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: var(--paper);
  color: var(--ink);
  transition:
    max-height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 300ms;
}

.mobile-menu nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(560px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--brand-charcoal);
}

.hero-video,
.hero-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero.has-video .hero-video {
  opacity: 0.6;
}

.hero-fallback {
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgb(255 255 255 / 12%), transparent 22%),
    linear-gradient(125deg, var(--brand-charcoal) 0%, #464143 58%, #181516 100%);
}

.hero-fallback span {
  position: absolute;
  width: 42vw;
  height: 120vh;
  top: -18vh;
  right: 9vw;
  opacity: 0.16;
  transform: rotate(18deg);
  filter: blur(1px);
}

.hero-fallback span:nth-child(1) {
  background: var(--brand-silver);
  translate: -8vw 0;
}

.hero-fallback span:nth-child(2) {
  background: var(--brand-red);
}

.hero-fallback span:nth-child(3) {
  background: var(--brand-charcoal);
  translate: 8vw 0;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 32%) 58%, rgb(0 0 0 / 18%) 100%),
    linear-gradient(0deg, rgb(0 0 0 / 54%) 0%, transparent 48%);
}

.hero-content {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: calc(var(--header-height) + clamp(72px, 11vh, 130px)) var(--page-gutter) clamp(90px, 12vh, 132px);
  text-align: center;
  transform: translateY(-2vh);
}

.hero h1 {
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  font-family: var(--primary-title);
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.hero-copy {
  max-width: none;
  margin: 26px auto 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .hero-copy {
    white-space: nowrap;
  }
}

.hero-actions {
  display: flex;
  margin-top: 88px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-primary,
.hero-secondary {
  min-height: 52px;
  display: inline-flex;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
}

.hero-primary {
  background: var(--brand-red);
  color: var(--paper);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-primary:hover {
  background: color-mix(in srgb, var(--brand-red) 82%, var(--ink));
  transform: translateY(-2px);
}

.hero-secondary {
  gap: 14px;
  border: 1px solid rgb(255 255 255 / 45%);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease;
}

.hero-secondary:hover {
  border-color: var(--paper);
  background: rgb(255 255 255 / 10%);
}

.hero-secondary svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: clamp(76px, 7vw, 112px);
  overflow: hidden;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-strip-inner {
  display: flex;
  width: min(100%, 1600px);
  min-height: 64px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-strip-label {
  flex: 0 0 auto;
  margin: 0 22px 0 0;
  padding-right: 22px;
  border-right: 1px solid var(--brand-silver);
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-strip-viewport {
  min-width: 0;
  max-width: 720px;
  overflow: hidden;
  flex: 0 1 720px;
}

.service-strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: serviceBelt 16s linear infinite;
  will-change: transform;
}

.service-strip-list {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0 clamp(16px, 1.8vw, 28px) 0 0;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: clamp(16px, 1.8vw, 28px);
  list-style: none;
  white-space: nowrap;
}

.service-strip-list li {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}

.service-strip-list li:not(:first-child)::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand-red);
  content: "";
}

.service-strip-list span {
  color: var(--brand-charcoal);
  font-family: var(--headline);
  font-size: 21px;
  font-weight: 500;
}

@keyframes serviceBelt {
  to {
    transform: translateX(-25%);
  }
}

.clients-strip {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 1.6vw, 22px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.clients-strip-label {
  margin: 0 0 clamp(10px, 1.2vw, 14px);
  color: var(--muted);
  font-family: var(--headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.clients-strip-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(48px, 5vw, 76px);
  animation: clientsBelt 32s linear infinite;
  will-change: transform;
}

.clients-strip-track img {
  width: clamp(96px, 9vw, 140px);
  height: clamp(64px, 6.4vw, 88px);
  flex: 0 0 auto;
  filter: grayscale(1) opacity(0.55);
  object-fit: contain;
  transition: filter 220ms ease;
}

.clients-strip-track img.clients-strip-logo-lg {
  width: clamp(126px, 11.7vw, 182px);
  height: clamp(83px, 8.3vw, 114px);
}

.clients-strip-track img:hover {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 600px) {
  .clients-strip {
    padding: 11px 0;
  }

  .clients-strip-label {
    margin-bottom: 4px;
  }

  .clients-strip-track img {
    width: 114px;
    height: 76px;
  }

  .clients-strip-track img.clients-strip-logo-lg {
    width: 150px;
    height: 100px;
  }
}

@keyframes clientsBelt {
  to {
    transform: translateX(-50%);
  }
}

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

.shop-showcase {
  scroll-margin-top: 0;
  background: var(--paper);
  overflow: hidden;
}

.shop-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(110px, 12vw, 190px) var(--page-gutter) clamp(70px, 7vw, 105px);
}

.direct-shop-showcase,
#tienda {
  background-image:
    linear-gradient(rgb(35 31 32 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(35 31 32 / 2%) 1px, transparent 1px);
  background-position: center, center;
  background-size: 28px 28px, 28px 28px;
}

.direct-shop-showcase .shop-heading > p:last-child .direct-shop-intro-break {
  display: block;
}

#tienda .shop-shell {
  padding-top: clamp(48px, 5vw, 84px);
  padding-bottom: clamp(24px, 2.6vw, 40px);
}

#tienda + .service-strip {
  padding-top: clamp(30px, 3vw, 48px);
}

.shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  padding-bottom: clamp(10px, 1.2vw, 16px);
  align-items: end;
  column-gap: 28px;
}

.shop-heading-divider {
  height: 1px;
  margin-bottom: clamp(64px, 7vw, 96px);
  background: linear-gradient(90deg, rgb(206 15 61 / 70%) 0%, var(--brand-red) 20%, #ff5578 50%, var(--brand-red) 80%, rgb(206 15 61 / 70%) 100%);
  background-size: 220% 100%;
  border-radius: 2px;
  animation: shop-divider-shimmer 3.2s ease-in-out infinite;
}

@keyframes shop-divider-shimmer {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

.shop-heading > p:first-child {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: var(--brand-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-heading h2 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(48px, 6.4vw, 98px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

#direct-shop-title {
  font-size: clamp(40px, 5.4vw, 78px);
}

#direct-shop-title em {
  color: var(--brand-red);
  font-style: normal;
}

.direct-shop-grid {
  margin-top: clamp(30px, 3.6vw, 56px);
}

.shop-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.6;
}

.shop-heading.reveal-ready h2 span {
  display: inline-block;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(72px) skewY(3deg);
  transition:
    opacity 0.45s ease,
    clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, clip-path, transform;
}

.shop-heading.reveal-ready h2 span:nth-of-type(2) {
  transition-delay: 0.14s;
}

.shop-heading.reveal-ready > p:last-child {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(32px);
  transition:
    opacity 0.65s ease 0.34s,
    filter 0.8s ease 0.34s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.34s;
}

.shop-heading.reveal-ready.is-visible h2 span {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) skewY(0);
  will-change: auto;
}

.shop-heading.reveal-ready.is-visible > p:last-child {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.primary-services-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(15px, 1.6vw, 26px);
}

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

.direct-shop-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  margin-inline: auto;
}

.direct-shop-grid .primary-service-content {
  min-height: 0;
  padding-block: 22px;
  align-items: flex-start;
}

.direct-shop-grid .primary-service-card {
  border-color: transparent;
}

.direct-shop-grid .primary-service-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgb(206 15 61 / 12%) 0%,
    rgb(206 15 61 / 12%) 30%,
    rgb(206 15 61 / 95%) 48%,
    #ff6b87 50%,
    rgb(206 15 61 / 95%) 52%,
    rgb(206 15 61 / 12%) 70%,
    rgb(206 15 61 / 12%) 100%
  );
  background-size: 320% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  content: "";
  pointer-events: none;
  animation: direct-shop-border-run 4s linear infinite;
}

@keyframes direct-shop-border-run {
  0% { background-position: 100% 0; }
  100% { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .direct-shop-grid .primary-service-card::before {
    animation: none;
    background-position: 0 0;
  }
}

.primary-service-content p.direct-shop-description {
  max-width: 90%;
  margin: 20px 0 0;
  overflow: visible;
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  white-space: normal;
  text-overflow: clip;
  text-transform: none;
}

.primary-service-card-dark .direct-shop-description {
  color: rgb(255 255 255 / 62%);
}

#shop-dtf .direct-shop-description span {
  display: block;
}

.primary-service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--brand-charcoal);
  scroll-margin-top: 20px;
  transition:
    border-color 220ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brand-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12;
  background: var(--silver-soft);
}

.primary-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-service-media-acrylic img {
  object-position: center 56%;
}

.primary-service-media-banner img {
  object-position: 27% center;
}

.primary-service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  min-height: 29px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  background: rgb(35 31 32 / 82%);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.primary-service-badge::before {
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  content: "";
}

.primary-service-content {
  display: flex;
  min-height: 112px;
  padding: 18px 17px 18px 19px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.primary-service-content > div {
  min-width: 0;
}

.primary-service-content p {
  margin: 0 0 5px;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--headline);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-service-content h3 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(20px, 1.85vw, 29px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.primary-service-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--silver-soft);
  color: var(--brand-charcoal);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 260ms ease;
}

.primary-service-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.primary-service-card-dark {
  background: var(--brand-charcoal);
}

.primary-service-card-dark .primary-service-content {
  background: var(--brand-charcoal);
  color: var(--paper);
}

.primary-service-card-dark .primary-service-content p {
  color: var(--brand-silver);
}

.primary-service-card-dark .primary-service-arrow {
  background: rgb(255 255 255 / 10%);
  color: var(--paper);
}

.primary-service-card:hover {
  border-color: var(--brand-silver);
  transform: translateY(-5px);
}

.primary-service-card:hover::after {
  transform: scaleX(1);
}

.primary-service-card:hover .primary-service-media img {
  transform: scale(1.045);
}

.primary-service-card:hover .primary-service-arrow {
  background: var(--brand-red);
  color: var(--paper);
  transform: rotate(5deg);
}

.primary-service-card.reveal-ready {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.6s ease,
    border-color 220ms ease,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-service-card.reveal-ready:nth-child(2) { transition-delay: 0.08s; }
.primary-service-card.reveal-ready:nth-child(3) { transition-delay: 0.16s; }
.primary-service-card.reveal-ready:nth-child(4) { transition-delay: 0.24s; }

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

.primary-service-card.reveal-ready.is-visible:hover {
  transform: translateY(-5px);
}

@media (max-width: 1180px) {
  .primary-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .primary-service-media {
    aspect-ratio: 1.3;
  }

  .primary-service-content h3 {
    font-size: clamp(25px, 3vw, 34px);
  }
}

@media (max-width: 640px) {
  .primary-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .primary-service-media {
    aspect-ratio: 1.2;
  }

  .primary-service-content {
    min-height: 100px;
    padding: 16px;
  }

  .primary-service-content h3 {
    font-size: clamp(23px, 7vw, 29px);
  }

  .primary-services-grid #dtf,
  .primary-services-grid #acrilico,
  .primary-services-grid #wraps,
  .primary-services-grid #banners {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-service-card,
  .primary-service-card.reveal-ready,
  .primary-service-media img,
  .primary-service-card::after,
  .primary-service-arrow {
    transition: none;
  }

  .primary-service-card.reveal-ready {
    opacity: 1;
    transform: none;
  }

  .shop-heading-divider {
    animation: none;
  }
}

.shop-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.35fr);
  min-height: 570px;
  border-top: 1px solid var(--line);
}

.shop-feature.reveal-ready {
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.shop-feature.reveal-ready[data-reveal="left"] {
  transform: translate3d(-120px, 26px, 0) rotate(-1.8deg);
  transform-origin: left center;
}

.shop-feature.reveal-ready[data-reveal="right"] {
  transform: translate3d(120px, 26px, 0) rotate(1.8deg);
  transform-origin: right center;
}

.shop-feature.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  will-change: auto;
}

.shop-feature.reveal-ready .shop-feature-copy > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-feature.reveal-ready .shop-feature-copy > :nth-child(1) {
  transition-delay: 0.18s;
}

.shop-feature.reveal-ready .shop-feature-copy > :nth-child(2) {
  transition-delay: 0.26s;
}

.shop-feature.reveal-ready .shop-feature-copy > :nth-child(3) {
  transition-delay: 0.34s;
}

.shop-feature.reveal-ready .shop-feature-copy > :nth-child(4) {
  transition-delay: 0.42s;
}

.shop-feature.reveal-ready .shop-feature-copy > :nth-child(5) {
  transition-delay: 0.5s;
}

.shop-feature.reveal-ready .shop-visual {
  opacity: 0;
  filter: saturate(0.7) blur(2px);
  transform: scale(0.91) rotate(2.5deg);
  transition:
    opacity 0.7s ease 0.18s,
    filter 0.85s ease 0.18s,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.shop-feature.reveal-ready[data-reveal="right"] .shop-visual {
  transform: scale(0.91) rotate(-2.5deg);
}

.shop-feature.reveal-ready.is-visible .shop-feature-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.shop-feature.reveal-ready.is-visible .shop-visual {
  opacity: 1;
  filter: saturate(1) blur(0);
  transform: scale(1) rotate(0);
}

.shop-feature-reverse {
  grid-template-columns: minmax(480px, 1.35fr) minmax(280px, 0.78fr);
}

.shop-feature-reverse .shop-feature-copy {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.shop-feature-reverse .shop-visual {
  order: 1;
}

.shop-feature-copy {
  display: flex;
  padding: clamp(48px, 5vw, 76px);
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid var(--line);
  font-family: var(--headline);
}

.shop-feature-tag {
  margin: 0 0 auto;
  color: var(--brand-red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-feature-copy h3 {
  margin: 54px 0 18px;
  font-family: var(--primary-title);
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
}

.shop-feature-copy > p:not(.shop-feature-tag) {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.shop-feature-copy ul {
  display: flex;
  margin: 28px 0 38px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.shop-feature-copy li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.shop-cta {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 18px 0 21px;
  align-items: center;
  gap: 24px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--brand-silver);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  isolation: isolate;
  animation: shopCtaGlow 4s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease;
}

.shop-cta::before {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -48%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 48%), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  animation: shopCtaShine 4s ease-in-out infinite;
  pointer-events: none;
}

.shop-cta span,
.shop-cta svg {
  position: relative;
  z-index: 1;
}

@keyframes shopCtaShine {
  0%, 66% {
    left: -48%;
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  86% {
    left: 118%;
    opacity: 0;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes shopCtaGlow {
  0%, 66%, 100% {
    box-shadow: 0 0 0 0 rgb(176 183 188 / 0%);
  }

  78% {
    box-shadow: 0 0 0 6px rgb(176 183 188 / 20%);
  }
}

.shop-cta svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.shop-cta:hover {
  background: var(--brand-charcoal);
  color: var(--paper);
  transform: translateY(-2px);
}

.shop-cta:hover svg {
  transform: translateX(3px);
}

.shop-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.shop-visual-dtf {
  background: var(--brand-charcoal);
}

.shop-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 56%;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-feature:hover .shop-visual-image {
  transform: scale(1.025);
}

.dtf-roll {
  position: absolute;
  width: 62%;
  height: 118%;
  top: -10%;
  right: 4%;
  border-radius: 48% 12% 14% 50%;
  background: linear-gradient(90deg, #ffffff, #d9dddf 64%, var(--brand-silver));
  box-shadow: -28px 28px 65px rgb(40 40 35 / 18%);
  transform: rotate(9deg);
}

.dtf-print {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(50%, 390px);
  aspect-ratio: 0.82;
  padding: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 30px 70px rgb(20 20 18 / 15%);
  transform: rotate(-5deg);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.dtf-print span {
  font-family: var(--display);
  font-size: clamp(74px, 9vw, 138px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.dtf-print small {
  margin-top: 20px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.color-register {
  position: absolute;
  z-index: 3;
  right: 11%;
  bottom: 12%;
  display: flex;
}

.color-register i {
  width: 35px;
  height: 35px;
  margin-left: -9px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.color-register i:nth-child(1) { background: var(--brand-charcoal); }
.color-register i:nth-child(2) { background: var(--brand-red); }
.color-register i:nth-child(3) { background: var(--brand-silver); }

.shop-visual-acrylic {
  background: var(--brand-charcoal);
}

.shop-visual-acrylic .shop-visual-image {
  object-position: center;
}

.shop-visual-wrap,
.shop-visual-banner {
  background: var(--brand-charcoal);
}

.shop-visual-wrap .shop-visual-image {
  object-position: center;
}

.shop-visual-banner .shop-visual-image {
  object-position: 27% center;
}

.acrylic-sheet {
  position: absolute;
  width: min(55%, 420px);
  aspect-ratio: 1.25;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 8px;
  box-shadow: 0 32px 72px rgb(30 70 80 / 18%);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.sheet-one {
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgb(176 183 188 / 34%);
  transform: translate(-48%, -48%) rotate(-5deg);
}

.sheet-one span {
  color: rgb(35 31 32 / 72%);
  font-family: var(--display);
  font-size: clamp(66px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.09em;
}

.sheet-two {
  z-index: 2;
  background: rgb(206 15 61 / 20%);
  transform: translate(-57%, -56%) rotate(6deg);
}

.sheet-three {
  z-index: 1;
  background: rgb(35 31 32 / 12%);
  transform: translate(-37%, -40%) rotate(13deg);
}

.acrylic-measure {
  position: absolute;
  right: 6%;
  bottom: 6%;
  color: rgb(35 31 32 / 48%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.expanded-services {
  overflow: hidden;
  background: var(--paper);
}

.expanded-services-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(38px, 4vw, 60px) var(--page-gutter) clamp(110px, 11vw, 170px);
}

.expanded-services-heading {
  display: flex;
  margin-bottom: clamp(44px, 5vw, 72px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.expanded-services-heading > div {
  max-width: 820px;
}

.expanded-services-heading p {
  margin: 0 0 17px;
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expanded-services-heading h2 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.expanded-services-link {
  display: inline-flex;
  min-height: 54px;
  padding: 0 19px 0 22px;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
  border: 1px solid var(--brand-silver);
  border-radius: 15px;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 500;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.expanded-services-link svg,
.expanded-service-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.expanded-services-link:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--paper);
}

.expanded-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 36px);
}

.expanded-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  transition: border-color 220ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expanded-service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24;
  background: var(--silver-soft);
}

.expanded-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expanded-service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-height: 29px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(35 31 32 / 78%);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.expanded-service-badge::before {
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  content: "";
}

.expanded-service-content {
  display: flex;
  min-height: 116px;
  padding: 18px 18px 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.expanded-service-content p {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: var(--headline);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expanded-service-content h3 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.expanded-service-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--silver-soft);
  color: var(--brand-charcoal);
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.expanded-service-card-dark .expanded-service-content {
  background: var(--brand-charcoal);
  color: var(--paper);
}

.expanded-service-card-dark .expanded-service-content p {
  color: var(--brand-silver);
}

.expanded-service-card-dark .expanded-service-arrow {
  background: rgb(255 255 255 / 10%);
  color: var(--paper);
}

.expanded-service-card:hover {
  border-color: var(--brand-silver);
  transform: translateY(-5px);
}

.expanded-service-card:hover .expanded-service-media img {
  transform: scale(1.045);
}

.expanded-service-card:hover .expanded-service-arrow {
  background: var(--brand-red);
  color: var(--paper);
  transform: rotate(5deg);
}

.expanded-services.reveal-ready .expanded-services-heading,
.expanded-services.reveal-ready .expanded-service-card {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.6s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.expanded-services.reveal-ready .expanded-service-card:nth-child(1) { transition-delay: 0.1s; }
.expanded-services.reveal-ready .expanded-service-card:nth-child(2) { transition-delay: 0.2s; }
.expanded-services.reveal-ready .expanded-service-card:nth-child(3) { transition-delay: 0.3s; }

.expanded-services.reveal-ready.is-visible .expanded-services-heading,
.expanded-services.reveal-ready.is-visible .expanded-service-card {
  opacity: 1;
  transform: translateY(0);
}

.stats-band {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  background: var(--brand-red);
  color: var(--paper);
}

.stats-background-word {
  position: absolute;
  z-index: -1;
  right: 50%;
  bottom: -0.22em;
  color: transparent;
  font-family: var(--headline);
  font-size: clamp(180px, 21vw, 350px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.075em;
  opacity: 0.18;
  transform: translateX(50%);
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--paper);
}

.stats-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1500px);
  min-height: 390px;
  margin-inline: auto;
  padding: clamp(64px, 7vw, 96px) var(--page-gutter) clamp(58px, 6vw, 82px);
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 170px;
  background: rgb(255 255 255 / 18%);
  content: "";
}

.stat-value {
  font-family: var(--headline);
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-value-language {
  font-size: clamp(28px, 2.9vw, 44px);
  letter-spacing: -0.025em;
}

.stat-label {
  min-height: 34px;
  margin-top: 9px;
  color: rgb(255 255 255 / 78%);
  font-family: var(--headline);
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 500;
  line-height: 1.35;
}

.stat-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-top: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--brand-red);
  box-shadow: 0 14px 30px rgb(35 31 32 / 16%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.stat-item:hover .stat-icon {
  transform: translateY(-5px) rotate(-3deg);
}

.stats-band.reveal-ready .stat-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-band.reveal-ready .stat-item:nth-child(2) { transition-delay: 0.1s; }
.stats-band.reveal-ready .stat-item:nth-child(3) { transition-delay: 0.2s; }
.stats-band.reveal-ready .stat-item:nth-child(4) { transition-delay: 0.3s; }

.stats-band.reveal-ready.is-visible .stat-item {
  opacity: 1;
  transform: translateY(0);
}

.faq-section {
  scroll-margin-top: 0;
  overflow: hidden;
  background: var(--silver-soft);
  color: var(--ink);
}

.faq-shell {
  display: grid;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(110px, 11vw, 170px) var(--page-gutter);
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(52px, 6.2vw, 94px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.faq-heading > p:last-child {
  max-width: 440px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--brand-silver);
}

.faq-item {
  border-bottom: 1px solid var(--brand-silver);
}

.faq-item summary {
  display: grid;
  min-height: 112px;
  padding: 26px 0;
  align-items: center;
  grid-template-columns: 46px minmax(0, 1fr) 32px;
  gap: 20px;
  cursor: pointer;
  font-family: var(--headline);
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 5px;
}

.faq-number {
  align-self: start;
  padding-top: 5px;
  color: #85877f;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #b8bab3;
  border-radius: 50%;
  transition: background 250ms ease, border-color 250ms ease, transform 350ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 350ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--paper);
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.faq-answer > p {
  max-width: 650px;
  min-height: 0;
  margin: 0;
  padding: 0 62px 0 66px;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: padding-bottom 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item[open] .faq-answer > p {
  padding-bottom: 34px;
}

.faq-section.reveal-ready .faq-heading,
.faq-section.reveal-ready .faq-item {
  opacity: 0;
  transform: translateY(38px);
}

.faq-section.reveal-ready .faq-heading {
  transform: translateY(54px);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section.reveal-ready .faq-item {
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section.reveal-ready .faq-item:nth-child(1) { transition-delay: 0.16s; }
.faq-section.reveal-ready .faq-item:nth-child(2) { transition-delay: 0.24s; }
.faq-section.reveal-ready .faq-item:nth-child(3) { transition-delay: 0.32s; }
.faq-section.reveal-ready .faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-section.reveal-ready .faq-item:nth-child(5) { transition-delay: 0.48s; }

.faq-section.reveal-ready.is-visible .faq-heading,
.faq-section.reveal-ready.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.reviews-section {
  scroll-margin-top: 0;
  overflow: hidden;
  background: var(--paper);
}

.reviews-shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(90px, 9vw, 140px) var(--page-gutter);
}

.reviews-heading {
  max-width: none;
  margin: 0 auto clamp(48px, 5vw, 76px);
  text-align: center;
}

.reviews-heading h2 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.reviews-heading p {
  max-width: none;
  margin: 22px auto 0;
  white-space: nowrap;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .reviews-heading h2,
  .reviews-heading p {
    white-space: normal;
  }

  .reviews-intro-break {
    display: block;
  }
}

.location-section {
  scroll-margin-top: 0;
  overflow: hidden;
  background: var(--paper);
}

.location-shell {
  display: grid;
  width: min(100%, 1600px);
  min-height: 720px;
  margin-inline: auto;
  padding: clamp(36px, 4vw, 64px) var(--page-gutter);
  grid-template-columns: minmax(320px, 0.72fr) minmax(580px, 1.28fr);
  gap: clamp(40px, 6vw, 92px);
}

.location-copy {
  display: flex;
  padding: clamp(55px, 7vw, 104px) 0;
  align-items: flex-start;
  flex-direction: column;
}

.location-copy h2 {
  max-width: 100%;
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(46px, 4.6vw, 74px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.location-copy address {
  margin: clamp(52px, 6vw, 82px) 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 25px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.location-copy > p {
  max-width: 370px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.location-link {
  display: inline-flex;
  min-height: 52px;
  padding: 0 18px 0 21px;
  align-items: center;
  gap: 16px;
  border-radius: 15px;
  background: var(--brand-red);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.location-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.location-link:hover {
  background: var(--brand-charcoal);
  transform: translateY(-2px);
}

.location-link:hover svg {
  transform: translate(2px, -2px);
}

.location-map {
  position: relative;
  min-height: 660px;
  margin: clamp(24px, 3vw, 48px) 0 clamp(24px, 3vw, 48px) clamp(30px, 5vw, 70px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--silver-soft);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.03);
}

.location-section.reveal-ready .location-copy > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-section.reveal-ready .location-copy > :nth-child(2) { transition-delay: 0.12s; }
.location-section.reveal-ready .location-copy > :nth-child(3) { transition-delay: 0.2s; }
.location-section.reveal-ready .location-copy > :nth-child(4) { transition-delay: 0.28s; }

.location-section.reveal-ready .location-map {
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 28px);
  transform: scale(0.97);
  transition:
    opacity 0.55s ease 0.1s,
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.location-section.reveal-ready.is-visible .location-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.location-section.reveal-ready.is-visible .location-map {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 28px);
  transform: scale(1);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  color: var(--paper);
  font-family: var(--headline);
}

.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("assets/PIE.png");
  background-position: center 48%;
  background-size: cover;
  content: "";
  opacity: 0.1;
  filter: brightness(0.25) saturate(0.55) contrast(1);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 124px) var(--page-gutter) 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.6fr) repeat(3, minmax(130px, 1fr));
  padding: 0 0 clamp(54px, 6vw, 86px);
  gap: clamp(34px, 5vw, 84px);
}

.footer-brand {
  grid-area: auto;
  align-self: start;
  color: var(--paper);
}

.footer-brand .brand-logo-frame {
  width: 172px;
  height: 120px;
}

.footer-brand .brand-logo {
  top: -27px;
  left: -20px;
  width: 211px;
  height: 211px;
}

.footer-brand .brand-number {
  font-size: clamp(36px, 4vw, 58px);
}

.footer-brand .brand-name {
  font-size: 13px;
}

.footer-brand .registration-dots {
  top: -5px;
  right: -8px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--brand-silver);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgb(255 255 255 / 82%);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.footer-column a {
  position: relative;
}

.footer-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.footer-column a:hover::after {
  color: var(--brand-red);
  transform: scaleX(1);
  transform-origin: left;
}

.footer-contact address {
  margin-top: 8px;
  color: rgb(255 255 255 / 48%);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .contact-item > svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer-contact .contact-item > svg .icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-contact .facebook-item > svg {
  fill: currentColor;
  stroke: none;
}

.mobile-contact-label {
  display: none;
}

.mobile-address-label {
  display: none;
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 42%);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--brand-red);
}

:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

@media (min-width: 961px) {
  :root {
    --header-height: 86px;
  }

  .desktop-nav {
    gap: clamp(30px, 3.4vw, 62px);
  }

  .desktop-nav a {
    font-size: 16px;
  }

  .language-switch {
    padding-inline: 10px;
    font-size: 11px;
  }

  .cart-button {
    width: 44px;
    height: 50px;
  }

  .wishlist-button {
    width: 44px;
    height: 50px;
  }

  .wishlist-button svg {
    width: 27px;
  }

  .cart-button svg {
    width: 28px;
  }

  .cart-count {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 22px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-frame {
    grid-template-columns: 1fr auto auto auto;
    grid-template-rows: var(--header-height);
    grid-template-areas: "brand utilities commerce menu";
    column-gap: 4px;
  }

  .header-frame::after {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .wishlist-button {
    display: none;
  }

  .utility-actions {
    gap: 0;
  }

  .cart-button {
    width: 42px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-left: 0;
  }

  .cart-count {
    top: 2px;
    right: -1px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    max-height: calc(100dvh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: flex;
    padding: 42px var(--page-gutter) 24px;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    padding: 13px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(27px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -0.045em;
  }

  .mobile-menu nav a span {
    font-family: var(--body);
    font-size: 16px;
  }

  .hero {
    min-height: max(600px, calc(100svh - var(--header-height)));
  }

  .hero-content {
    padding-bottom: 102px;
  }

  .hero h1 {
    font-size: clamp(25px, 4.8vw, 52px);
  }

  .shop-heading {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .shop-heading > p:first-child {
    margin-bottom: 0;
  }

  .shop-heading > p:last-child {
    max-width: 600px;
  }

  .shop-feature,
  .shop-feature-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stats-shell {
    min-height: 600px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 54px;
  }

  .stat-item:nth-child(2n)::after {
    display: none;
  }

  .stat-item:not(:last-child)::after {
    height: 150px;
  }

  .shop-feature-copy,
  .shop-feature-reverse .shop-feature-copy {
    order: 1;
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .shop-visual,
  .shop-feature-reverse .shop-visual {
    order: 2;
    min-height: 430px;
  }

  .expanded-services-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .expanded-services-grid {
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    overflow-x: auto;
    grid-auto-columns: min(78vw, 410px);
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .expanded-services-grid::-webkit-scrollbar {
    display: none;
  }

  .expanded-service-card {
    scroll-snap-align: start;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: 760px;
  }

  .faq-heading > p:last-child {
    max-width: 600px;
  }

  .location-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .location-copy {
    min-height: 530px;
  }

  .location-copy h2 {
    max-width: 760px;
  }

  .location-map {
    min-height: 560px;
    margin-top: 0;
  }

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

  .footer-contact address,
  .footer-contact .mobile-address-label,
  .site-footer .footer-address {
    display: none !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 22px;
  }

}

@media (max-width: 480px) {
  #direct-shop-title {
    font-size: clamp(28px, 8.2vw, 31px);
  }

  .direct-shop-showcase .shop-heading {
    row-gap: 24px;
  }

  .direct-shop-showcase .shop-heading > p:last-child {
    font-size: 16px;
    line-height: 1.3;
  }

  #tienda .shop-heading {
    row-gap: 24px;
  }

  #tienda .shop-heading > p:last-child {
    line-height: 1.3;
  }

  .direct-shop-intro-break {
    display: block;
  }

  .site-header .brand-logo-frame {
    width: 78px;
    height: 55px;
  }

  .site-header .brand-logo {
    top: -12px;
    left: -9px;
    width: 96px;
    height: 96px;
  }

  .footer-brand .brand-logo-frame {
    width: 150px;
    height: 105px;
  }

  .footer-brand .brand-logo {
    top: -24px;
    left: -17px;
    width: 184px;
    height: 184px;
  }

  .site-footer::before {
    background-position: center 48%;
    opacity: 0.18;
    filter: brightness(0.4) saturate(0.6) contrast(1);
  }

  .brand-number {
    font-size: 25px;
  }

  .language-switch {
    padding-inline: 4px;
    gap: 6px;
  }

  .language-switch > span[aria-hidden="true"] {
    display: none;
  }

  .language-option {
    gap: 0;
    font-size: 0;
  }

  .language-flag {
    width: 19px;
    height: 13px;
  }

  .hero-content {
    padding-top: 114px;
    padding-bottom: 96px;
    transform: translateY(0);
  }

  .hero h1 {
    margin-top: 26px;
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.15;
  }

  .hero-title-line-wrap {
    width: auto;
    white-space: normal;
  }

  .hero-copy {
    max-width: 32rem;
    margin-top: 21px;
    font-size: 17px;
    line-height: 1.3;
  }

  .hero-actions {
    margin-top: 62px;
    align-items: center;
    flex-direction: column;
  }

  .hero-primary,
  .hero-secondary {
    width: min(84vw, 290px);
  }

  .service-strip-inner {
    min-height: 58px;
    padding-right: 22px;
    padding-left: 22px;
    justify-content: flex-start;
  }

  .service-strip-viewport {
    max-width: none;
    flex: 1;
  }

  .service-strip-track {
    animation-duration: 13s;
  }

  .service-strip-label {
    margin-right: 14px;
    padding-right: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .service-strip-list,
  .service-strip-list li {
    gap: 18px;
  }

  .service-strip-list {
    flex: 0 0 auto;
  }

  .shop-shell {
    padding-top: 100px;
    padding-bottom: 72px;
  }

  .expanded-services-shell {
    padding-top: 38px;
    padding-bottom: 104px;
  }

  .expanded-services-heading {
    margin-bottom: 38px;
    gap: 28px;
  }

  .expanded-services-heading p {
    margin-bottom: 13px;
  }

  .expanded-services-heading h2 {
    font-size: clamp(34px, 10.5vw, 43px);
  }

  .expanded-services-grid {
    grid-auto-columns: min(84vw, 360px);
    gap: 16px;
  }

  .expanded-service-content {
    min-height: 105px;
  }

  .expanded-service-content h3 {
    font-size: 23px;
  }

  .stats-band,
  .stats-shell {
    min-height: 520px;
  }

  .stats-shell {
    padding: 66px 18px 62px;
    column-gap: 8px;
    row-gap: 46px;
  }

  .stats-background-word {
    bottom: -0.04em;
    font-size: 42vw;
    opacity: 0.13;
  }

  .stat-value {
    font-size: 34px;
  }

  .stat-value-language {
    font-size: 26px;
  }

  .stat-label {
    max-width: 130px;
    min-height: 31px;
    margin-top: 7px;
    font-size: 10px;
  }

  .stat-icon {
    width: 66px;
    height: 66px;
    margin-top: 17px;
  }

  .stat-icon svg {
    width: 40px;
    height: 40px;
  }

  .stat-item:not(:last-child)::after {
    height: 132px;
  }

  .shop-feature.reveal-ready[data-reveal="left"] {
    transform: translate3d(-66px, 20px, 0) rotate(-1deg);
  }

  .shop-feature.reveal-ready[data-reveal="right"] {
    transform: translate3d(66px, 20px, 0) rotate(1deg);
  }

  .shop-feature.reveal-ready.is-visible {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  .shop-heading {
    padding-bottom: 14px;
  }

  .shop-heading h2 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 0.98;
  }

  .faq-shell {
    padding: 96px 22px 110px;
    gap: 54px;
  }

  .faq-heading h2 {
    margin-inline: auto;
    font-size: clamp(40px, 10.6vw, 48px);
    line-height: 1.15;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-heading > p:last-child {
    margin: 25px auto 0;
  }

  .faq-item summary {
    min-height: 94px;
    padding: 22px 0;
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: 12px;
    font-size: 20px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-answer > p {
    min-height: 0;
    padding-right: 40px;
    padding-left: 44px;
    font-size: 14px;
  }

  .location-shell {
    padding: 28px 22px 0;
  }

  .location-copy {
    min-height: auto;
    padding: 58px 0 32px;
    align-items: center;
    text-align: center;
  }

  .location-copy h2 {
    font-size: clamp(40px, 11vw, 50px);
    line-height: 0.95;
  }

  .location-copy address {
    margin-top: 46px;
    font-size: 19px;
  }

  .location-copy > p {
    display: none;
  }

  .location-link {
    min-height: 58px;
    margin-top: 26px;
    padding-right: 23px;
    padding-left: 26px;
    gap: 12px;
    font-size: 14px;
  }

  .location-map {
    width: calc(100% + 44px);
    min-height: 340px;
    margin-top: 8px;
    margin-bottom: 0;
    margin-left: -22px;
    border-radius: 22px 22px 0 0;
  }

  .location-section.reveal-ready.is-visible .location-map {
    clip-path: inset(0 round 22px 22px 0 0);
  }

  .shop-feature-copy,
  .shop-feature-reverse .shop-feature-copy {
    min-height: 430px;
    padding: 18px 22px 44px;
    align-items: center;
    text-align: center;
  }

  .shop-feature-tag {
    display: none;
    margin: 0;
    white-space: nowrap;
  }

  .shop-feature-copy h3 {
    margin-top: 34px;
    font-size: 38px;
  }

  #acrilico .shop-feature-copy h3 {
    font-size: clamp(27px, 8.5vw, 33px);
    white-space: nowrap;
  }

  #acrilico {
    margin-top: 30px;
  }

  .shop-feature-copy > p:not(.shop-feature-tag) {
    margin-inline: auto;
    line-height: 1.48;
  }

  .shop-feature-copy ul {
    justify-content: center;
  }

  .shop-cta {
    align-self: center;
  }

  .shop-visual,
  .shop-feature-reverse .shop-visual {
    min-height: 390px;
  }

  .dtf-print {
    width: 58%;
    padding: 24px;
  }

  .dtf-print span {
    font-size: 74px;
  }

  .acrylic-sheet {
    width: 65%;
  }

  .sheet-one span {
    font-size: 68px;
  }

  .shop-feature,
  .shop-feature-reverse {
    display: flex;
    padding-bottom: 10px;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--silver-soft);
    box-shadow: none;
  }

  .shop-visual,
  .shop-feature-reverse .shop-visual {
    order: 1;
    min-height: 320px;
    border-radius: 0;
  }

  .shop-feature-copy,
  .shop-feature-reverse .shop-feature-copy {
    position: relative;
    z-index: 2;
    order: 2;
    width: calc(100% - 28px);
    min-height: 0;
    margin: -52px auto 0;
    padding: 28px 20px 24px;
    border: 1px solid rgb(255 255 255 / 88%);
    border-radius: 14px;
    background: rgb(255 255 255 / 92%);
    box-shadow: none;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
  }

  .shop-feature-copy h3,
  #acrilico .shop-feature-copy h3 {
    margin: 0 0 17px;
  }

  .shop-feature-copy ul {
    margin-top: 20px;
    margin-bottom: 23px;
  }

  #acrilico {
    margin-top: 38px;
  }

  #wraps,
  #banners {
    margin-top: 38px;
  }

  .footer-shell {
    padding-top: 66px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 140px));
    justify-content: center;
    column-gap: 10px;
    row-gap: 46px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    justify-self: center;
  }

  .footer-main > .footer-column:not(.footer-contact) {
    align-items: center;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 18px;
    row-gap: 12px;
    padding-top: 50px;
    border-top: 1px solid rgb(255 255 255 / 18%);
    justify-items: center;
    text-align: center;
  }

  .footer-contact h3,
  .footer-contact address {
    grid-column: 1 / -1;
  }

  .footer-contact h3 {
    margin-bottom: 4px;
  }

  .footer-contact address {
    display: none;
    margin-top: 0;
  }

  .footer-contact .mobile-address-label {
    display: none;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-company-contact,
  .footer-contact .phone-item,
  .footer-contact .email-item,
  .footer-contact .desktop-contact-label {
    display: none;
  }

  .footer-contact .mobile-contact-label {
    display: inline;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom nav {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

}

/* Acceso flotante a WhatsApp. */
.whatsapp-float {
  position: fixed;
  z-index: 80;
  left: clamp(18px, 2.2vw, 34px);
  bottom: clamp(20px, 2.4vw, 36px);
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgb(35 31 32 / 22%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border: 1px solid rgb(37 211 102 / 48%);
  border-radius: inherit;
  content: "";
  animation: whatsappPulse 3.2s ease-out infinite;
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.whatsapp-float span {
  position: absolute;
  left: calc(100% + 12px);
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--brand-charcoal);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.whatsapp-float:hover {
  background: #1fbd5a;
  box-shadow: 0 15px 34px rgb(35 31 32 / 28%);
  transform: translateY(-3px);
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}

@keyframes whatsappPulse {
  0%, 55% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    left: 17px;
    bottom: 19px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float span {
    animation: none;
    transition: none;
  }
}

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

  .hero-video {
    display: none;
  }

  .shop-cta,
  .shop-cta::before {
    animation: none !important;
  }

  .service-strip-track {
    animation: none !important;
    transform: none;
  }

  .shop-feature.reveal-ready,
  .shop-feature.reveal-ready[data-reveal="left"],
  .shop-feature.reveal-ready[data-reveal="right"] {
    opacity: 1;
    transform: none;
  }

  .shop-feature.reveal-ready .shop-feature-copy > *,
  .shop-feature.reveal-ready .shop-visual,
  .shop-heading.reveal-ready h2 span,
  .shop-heading.reveal-ready > p:last-child,
  .faq-section.reveal-ready .faq-heading,
  .faq-section.reveal-ready .faq-item,
  .location-section.reveal-ready .location-copy > *,
  .location-section.reveal-ready .location-map {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .expanded-services.reveal-ready .expanded-services-heading,
  .expanded-services.reveal-ready .expanded-service-card {
    opacity: 1;
    transform: none;
  }

}

@media (min-width: 961px) {
  .shop-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 2.6vw, 42px);
    row-gap: clamp(10px, 1vw, 16px);
  }

  .shop-heading {
    grid-column: 1 / -1;
  }

  .shop-feature,
  .shop-feature-reverse {
    display: flex;
    padding-bottom: 18px;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: 32px;
    background: var(--silver-soft);
    box-shadow: none;
  }

  .shop-visual,
  .shop-feature-reverse .shop-visual {
    order: 1;
    min-height: clamp(360px, 30vw, 470px);
    border-radius: 0;
  }

  .shop-feature-copy,
  .shop-feature-reverse .shop-feature-copy {
    position: relative;
    z-index: 2;
    order: 2;
    width: calc(100% - 40px);
    min-height: 320px;
    margin: -68px auto 0;
    padding: clamp(32px, 3vw, 44px);
    border: 1px solid rgb(255 255 255 / 88%);
    border-radius: 27px;
    background: rgb(255 255 255 / 93%);
    box-shadow: none;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }

  .shop-feature-tag {
    margin: 0;
  }

  .shop-feature-copy h3 {
    margin: 26px 0 16px;
    font-size: clamp(34px, 3.2vw, 54px);
  }

  #acrilico .shop-feature-copy h3 {
    font-size: clamp(29px, 3vw, 50px);
    white-space: nowrap;
  }

  .shop-feature-copy ul {
    margin-top: 21px;
    margin-bottom: 24px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-column {
    gap: 15px;
  }

  .footer-column h3 {
    font-size: 12px;
  }

  .footer-column a,
  .footer-column address {
    font-size: 15px;
  }

  .footer-contact .contact-item > svg {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }
}

/* Franja compacta de beneficios. */
.compact-benefits {
  min-height: 360px;
  background: var(--brand-red);
}

.compact-benefits .stats-shell {
  width: min(100%, 1500px);
  min-height: 360px;
  padding: 80px var(--page-gutter);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
}

.compact-benefits .stat-item {
  min-height: 200px;
  padding: 12px clamp(18px, 2.2vw, 36px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.compact-benefits .stat-item:not(:last-child)::after {
  top: 50%;
  right: 0;
  display: block;
  width: 1px;
  height: 180px;
  background: rgb(255 255 255 / 20%);
  transform: translateY(-50%);
}

.compact-benefits .stat-icon {
  width: 76px;
  height: 76px;
  margin: 0;
  flex: 0 0 76px;
  background: var(--paper);
  color: var(--brand-red);
  box-shadow: none;
}

.compact-benefits .stat-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.45;
}

.compact-benefits .stat-item:hover .stat-icon {
  transform: translateY(-2px);
}

.compact-benefits .stat-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.compact-benefits .stat-copy strong {
  font-family: var(--headline);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.2;
}

.compact-benefits .stat-copy small {
  margin-top: 2px;
  color: rgb(255 255 255 / 78%);
  font-family: var(--headline);
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 400;
  line-height: 1.25;
}

@media (max-width: 960px) {
  .compact-benefits,
  .compact-benefits .stats-shell {
    min-height: 370px;
  }

  .compact-benefits .stats-shell {
    padding: 26px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-benefits .stat-item {
    min-height: 158px;
    padding: 15px 20px;
  }

  .compact-benefits .stat-item::after {
    display: none !important;
  }

  .compact-benefits .stat-item:nth-child(odd) {
    border-right: 1px solid rgb(255 255 255 / 18%);
  }

  .compact-benefits .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }
}

@media (max-width: 480px) {
  .compact-benefits,
  .compact-benefits .stats-shell {
    min-height: 368px;
  }

  .compact-benefits .stats-shell {
    padding: 24px 10px;
    column-gap: 0;
    row-gap: 0;
  }

  .compact-benefits .stat-item {
    min-height: 150px;
    padding: 14px 9px;
    gap: 10px;
  }

  .compact-benefits .stat-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .compact-benefits .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .compact-benefits .stat-copy strong {
    font-size: 11px;
  }

  .compact-benefits .stat-copy small {
    margin-top: 3px;
    font-size: 9px;
  }
}

.cart-drawer-overlay {
  position: fixed;
  z-index: 210;
  inset: 0;
  background: rgb(20 18 19 / 55%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;
  display: flex;
  width: min(420px, 100vw);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -18px 0 40px rgb(20 18 19 / 18%);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  padding: 22px 22px 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: 22px;
  font-weight: 600;
}

.cart-drawer-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--silver-soft);
  color: var(--brand-charcoal);
  cursor: pointer;
  transition: background-color 180ms ease;
}

.cart-drawer-close:hover {
  background: var(--brand-red);
  color: var(--paper);
}

.cart-drawer-close svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-drawer-items {
  overflow-y: auto;
  padding: 18px 22px;
  flex: 1;
}

.cart-drawer-empty {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.cart-drawer-item {
  display: flex;
  padding: 16px 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-item:first-child {
  padding-top: 0;
}

.cart-drawer-item-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.cart-drawer-item-info strong {
  font-family: var(--headline);
  font-size: 13px;
  font-weight: 600;
}

.cart-drawer-item-info small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-drawer-item-price {
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
}

.cart-drawer-item-controls {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-drawer-quantity {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  grid-template-columns: 28px 30px 28px;
}

.cart-drawer-quantity button,
.cart-drawer-quantity output {
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 0;
  background: var(--paper);
  font-size: 12px;
}

.cart-drawer-quantity button {
  cursor: pointer;
}

.cart-drawer-quantity button:hover {
  background: var(--silver-soft);
}

.cart-drawer-quantity output {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 600;
}

.cart-drawer-remove {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  transition: color 180ms ease;
}

.cart-drawer-remove:hover {
  color: var(--brand-red);
}

.cart-drawer-footer {
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
}

.cart-drawer-total-line {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-total-line span {
  color: var(--muted);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-drawer-total-line strong {
  font-family: var(--headline);
  font-size: 22px;
  font-weight: 600;
}

.cart-drawer-checkout {
  display: flex;
  width: 100%;
  min-height: 52px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--brand-red);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--headline);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease;
}

.cart-drawer-checkout:hover {
  background: var(--brand-charcoal);
  transform: translateY(-2px);
}

.cart-drawer-checkout:disabled {
  background: var(--silver-soft);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

.cart-drawer-clear {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--brand-charcoal);
  cursor: pointer;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease;
}

.cart-drawer-clear:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.cart-drawer-clear:disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .cart-drawer-overlay {
    transition: none;
  }
}
