:root {
  --display: "Fredoka", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
  --ink: #252A2A;
  --violet-blue: #4E58B7;
  --hero-purple: #6B2C83;
  --green: #079447;
  --green-aa: #07823F;
  --orange: #F4A13D;
  --pink: #E00070;
  --navy: #293B7B;
  --sky: #3895CE;
  --sky-aa: #2B7BAF;
  --purple: #71418C;
  --gold: #D9A62E;
  --paper: #FFFFFF;
  --radius-lg: 2.25rem;
  --shadow: 0 1.25rem 3rem rgb(37 42 42 / 14%);
  --container: min(1180px, calc(100% - 40px));
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --soft-violet: #F2EEFB;
  --soft-blue: #EDF8FD;
  --soft-gold: #FFF8E3;
  --header-height: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body:has(.menu-toggle[aria-expanded="true"]),
body:has(.search-dialog[open]),
body:has(.whatsapp-dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.has-image-fallback {
  background:
    radial-gradient(circle at 28% 34%, rgb(255 255 255 / 72%) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--soft-blue), var(--soft-violet));
}

.service-card.has-image-fallback::before,
.product-card.has-image-fallback::before {
  display: block;
  min-height: 265px;
  background:
    radial-gradient(circle at 50% 42%, rgb(78 88 183 / 16%) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--soft-blue), var(--soft-violet));
  content: "";
}

.product-card.has-image-fallback::before {
  min-height: 260px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.65rem, 6.1vw, 6.4rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.025em;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--paper);
  background: var(--navy);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy) !important;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.75rem);
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 1.25rem auto 0;
  color: rgb(37 42 42 / 72%);
  font-size: 1.05rem;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--pink);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.55rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--paper);
  background: var(--pink);
  box-shadow: 0 0.75rem 1.5rem rgb(224 0 112 / 25%);
}

.button--secondary {
  color: var(--navy);
  border-color: rgb(255 255 255 / 68%);
  background: var(--paper);
  box-shadow: 0 0.75rem 1.5rem rgb(37 42 42 / 12%);
}

.button--dark {
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 0.75rem 1.5rem rgb(41 59 123 / 22%);
}

.button--light {
  color: var(--hero-purple);
  background: var(--paper);
  box-shadow: 0 0.9rem 2rem rgb(41 59 123 / 22%);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(41 59 123 / 8%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 0.45rem 1.5rem rgb(37 42 42 / 6%);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 0.75rem 2rem rgb(37 42 42 / 14%);
}

.site-header__inner {
  display: grid;
  width: min(1420px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 156px max-content 52px;
  align-items: center;
  justify-content: center;
  column-gap: 0.75rem;
}

.brand {
  display: flex;
  width: 132px;
  height: 96px;
  align-items: center;
  justify-content: flex-start;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: rotate(-1deg) scale(1.02);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.35rem 0.55rem rgb(37 42 42 / 20%));
  transform: scale(1.18);
  transform-origin: left center;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.nav-pill {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  transition: color 170ms ease, background 170ms ease, transform 170ms ease;
}

.nav-pill:hover {
  transform: translateY(-2px);
}

.nav-pill--violet { color: var(--paper); background: var(--violet-blue); }
.nav-pill--green { color: var(--paper); background: var(--green-aa); }
.nav-pill--orange { color: var(--ink); background: var(--orange); }
.nav-pill--pink { color: var(--paper); background: var(--pink); }
.nav-pill--navy { color: var(--paper); background: var(--navy); }
.nav-pill--sky { color: var(--paper); background: var(--sky-aa); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  border: 0;
  gap: 0.55rem;
  cursor: pointer;
}

.nav-dropdown > button::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 170ms ease;
}

.nav-dropdown > button[aria-expanded="true"]::after {
  transform: translateY(0.12rem) rotate(225deg);
}

.nav-dropdown.is-open > button {
  box-shadow: 0 0 0 3px rgb(41 59 123 / 14%), 0 0.75rem 1.5rem rgb(41 59 123 / 16%);
  transform: translateY(-2px);
}

.nav-dropdown.is-open::after {
  position: absolute;
  z-index: 19;
  width: max(100%, 230px);
  height: 0.8rem;
  top: 100%;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  pointer-events: auto;
}

.nav-dropdown__menu {
  position: absolute;
  z-index: 20;
  display: grid;
  min-width: 230px;
  top: calc(100% + 0.65rem);
  left: 50%;
  padding: 0.65rem;
  margin: 0;
  border: 1px solid rgb(41 59 123 / 10%);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: 0 1rem 2.5rem rgb(37 42 42 / 18%);
  list-style: none;
  transform: translateX(-50%);
}

.nav-dropdown__menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 0.7rem;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--soft-violet);
}

.menu-toggle,
.search-toggle,
.dialog-close,
.carousel__controls button {
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  color: var(--paper);
  background: var(--violet-blue);
  font-size: 1.35rem;
}

.search-toggle {
  color: var(--paper);
  background: var(--pink);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.search-toggle:hover {
  background: var(--hero-purple);
  transform: rotate(-8deg);
}

.nav-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgb(37 42 42 / 46%);
  backdrop-filter: blur(3px);
}

/* Search */
.search-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2rem 6rem rgb(37 42 42 / 35%);
}

.search-dialog::backdrop {
  background: rgb(41 59 123 / 62%);
  backdrop-filter: blur(6px);
}

.whatsapp-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2rem 6rem rgb(37 42 42 / 35%);
}

.whatsapp-dialog::backdrop {
  background: rgb(41 59 123 / 62%);
  backdrop-filter: blur(6px);
}

.search-dialog__content {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
}

.whatsapp-dialog__panel {
  position: relative;
  padding: clamp(2rem, 6vw, 3.25rem);
}

.search-dialog h2 {
  padding-right: 3rem;
  color: var(--hero-purple);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.whatsapp-dialog h2 {
  padding-right: 3rem;
  color: var(--hero-purple);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.whatsapp-dialog__options {
  display: grid;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.whatsapp-option {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  color: var(--paper);
  background: #168A54;
  box-shadow: 0 0.45rem 1rem rgb(22 138 84 / 24%);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.whatsapp-option:hover,
.whatsapp-option:focus-visible {
  color: var(--paper);
  background: #0E7042;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px var(--navy);
  transform: translateY(-2px);
}

.search-dialog label {
  display: block;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}

.search-dialog input {
  width: 100%;
  min-height: 54px;
  padding: 0.75rem 1rem;
  border: 2px solid rgb(78 88 183 / 25%);
  border-radius: 1rem;
  outline: 0;
}

.search-dialog input:focus {
  border-color: var(--violet-blue);
  box-shadow: 0 0 0 4px rgb(78 88 183 / 13%);
}

.dialog-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--paper);
  background: var(--pink);
  font-size: 1.6rem;
}

.search-results {
  display: grid;
  padding: 0;
  margin: 1.25rem 0 0;
  gap: 0.5rem;
  list-style: none;
}

.search-results a {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: var(--soft-violet);
  font-weight: 600;
}

.search-empty {
  margin-top: 1rem;
  color: var(--pink);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, calc(100svh - 108px), 840px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 11% 20%, rgb(255 255 255 / 11%) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 14%, rgb(255 255 255 / 10%) 0 4px, transparent 5px),
    linear-gradient(118deg, var(--navy) 0%, var(--violet-blue) 43%, var(--hero-purple) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 2px dashed rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -190px;
  left: -90px;
}

.hero::after {
  width: 290px;
  height: 290px;
  right: -80px;
  bottom: 40px;
}

.hero__inner {
  display: grid;
  width: min(1420px, calc(100% - 48px));
  min-height: clamp(650px, calc(100svh - 108px), 820px);
  margin-inline: auto;
  padding: clamp(3.25rem, 6vh, 5rem) 0 5rem;
  grid-template-columns: minmax(440px, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy .eyebrow {
  color: #FFE29A;
}

.hero__copy h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 3.35vw, 4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero__copy > p:not(.eyebrow) {
  max-width: 585px;
  margin: 1.15rem 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.9rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  margin: 1.15rem 0 0;
  padding: 0;
  gap: 0.45rem 1.25rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.78rem;
  font-weight: 600;
  list-style: none;
}

.hero__trust li {
  position: relative;
  padding-left: 0.95rem;
}

.hero__trust li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #FFE29A;
  content: "";
}

.hero__trust a {
  text-decoration: underline;
  text-decoration-color: rgb(255 226 154 / 58%);
  text-underline-offset: 0.18em;
}

.hero-collage {
  --hero-marquee-gap: 1rem;
  position: relative;
  display: grid;
  width: min(720px, 100%);
  height: clamp(520px, calc(100svh - 190px), 660px);
  min-height: 0;
  padding-block: 1rem;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  gap: var(--hero-marquee-gap);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-collage__column {
  display: block;
  height: calc(100% + 160px);
  min-width: 0;
  min-height: 0;
  margin-top: -80px;
  overflow: hidden;
  will-change: transform;
}

.hero-collage__track {
  display: flex;
  width: 100%;
  flex-direction: column;
  animation-play-state: running;
  will-change: transform;
}

.hero-collage__column--up .hero-collage__track {
  animation: hero-marquee-up 24s linear infinite;
}

.hero-collage__column--down .hero-collage__track {
  animation: hero-marquee-down 24s linear infinite;
}

.hero-collage__sequence {
  display: grid;
  flex: 0 0 auto;
  padding-bottom: var(--hero-marquee-gap);
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hero-marquee-gap);
}

@keyframes hero-marquee-up {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes hero-marquee-down {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.hero-collage__item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-collage__item::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44%;
  background: linear-gradient(to top, rgb(16 18 35 / 88%), transparent);
  content: "";
  pointer-events: none;
}

.hero-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-collage__caption {
  position: absolute;
  z-index: 2;
  right: clamp(0.8rem, 2vw, 1.2rem);
  bottom: clamp(0.75rem, 1.5vw, 1rem);
  left: clamp(0.8rem, 2vw, 1.2rem);
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgb(0 0 0 / 55%);
  text-wrap: balance;
  pointer-events: none;
}

.cloud-bank {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 78px;
  overflow: hidden;
}

.cloud-bank::before,
.cloud-bank::after {
  position: absolute;
  bottom: -47px;
  width: 112%;
  height: 100px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.cloud-bank::before {
  left: -8%;
  box-shadow:
    120px -17px 0 5px var(--paper),
    280px 4px 0 12px var(--paper),
    455px -20px 0 4px var(--paper),
    650px 2px 0 14px var(--paper),
    840px -20px 0 8px var(--paper),
    1030px 0 0 13px var(--paper),
    1220px -16px 0 4px var(--paper);
}

.cloud-bank::after {
  right: -18%;
  bottom: -64px;
  opacity: 0.55;
}

/* Indicators */
.indicators {
  position: relative;
  z-index: 5;
  width: var(--container);
  margin: -1.4rem auto 0;
}

.indicators__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.indicator-card {
  display: flex;
  min-width: 0;
  min-height: 158px;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.8rem;
  border-radius: 1.65rem;
  color: var(--paper);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 200ms ease;
}

.indicator-card:hover,
.indicator-card:focus-visible {
  color: var(--paper);
  transform: translateY(-7px) rotate(-1deg);
}

.indicator-card strong {
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.35vw, 2.5rem);
  line-height: 1.04;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.indicator-card span {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.indicator-card--green { color: var(--paper); background: var(--green-aa); }
.indicator-card--sky { color: var(--paper); background: var(--sky-aa); }
.indicator-card--pink { color: var(--paper); background: var(--pink); }
.indicator-card--purple { color: var(--paper); background: var(--purple); }
.indicator-card--navy { color: var(--paper); background: var(--navy); }
.indicator-card--wedding { color: var(--paper); background: linear-gradient(135deg, #813B69, #A74978); }

.indicator-card--pink strong {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

/* Local services */
.local-services {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding: clamp(3.75rem, 6vw, 5.5rem) clamp(1.35rem, 4vw, 3.5rem);
  border-radius: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 4% 8%, rgb(78 88 183 / 12%) 0 5rem, transparent 5.1rem),
    radial-gradient(circle at 96% 92%, rgb(224 0 112 / 10%) 0 7rem, transparent 7.1rem),
    linear-gradient(135deg, #F7F3FF, #EDF8FD);
  box-shadow: 0 1.5rem 4rem rgb(41 59 123 / 10%);
}

.local-services .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.local-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.local-service {
  --local-accent: var(--violet-blue);
  min-width: 0;
  padding: 1.35rem 1.4rem 1.45rem;
  border-top: 0.35rem solid var(--local-accent);
  border-radius: 1.35rem;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 0.8rem 2rem rgb(41 59 123 / 8%);
}

.local-service h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

.local-service p {
  margin: 0;
  color: rgb(37 42 42 / 70%);
  font-size: 0.9rem;
  line-height: 1.55;
}

.local-service--pink { --local-accent: var(--pink); }
.local-service--sky { --local-accent: var(--sky-aa); }
.local-service--orange { --local-accent: #DB7D0D; }
.local-service--green { --local-accent: var(--green-aa); }
.local-service--navy { --local-accent: var(--navy); }
.local-service--violet { --local-accent: var(--violet-blue); }

/* Catalog */
.catalog {
  padding-top: clamp(6.5rem, 10vw, 10rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
}

.service-card {
  --card-accent: var(--violet-blue);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 1.15rem 2.75rem rgb(37 42 42 / 12%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 1.75rem 3.25rem rgb(37 42 42 / 18%);
  transform: translateY(-8px);
}

.service-card::after {
  position: absolute;
  width: 85px;
  height: 85px;
  right: -28px;
  bottom: -28px;
  border: 12px solid color-mix(in srgb, var(--card-accent) 22%, transparent);
  border-radius: 50%;
  content: "";
}

.service-card > img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

#sillones-virreinales > img {
  object-position: center 52%;
}

#fiestas-infantiles > img,
#fondos-paneles-decorativos > img {
  object-position: center 52%;
}

#sillas-mesas > img {
  object-position: center 60%;
}

#quinceaneros-graduaciones > img {
  object-position: center 54%;
}

.service-card > div {
  position: relative;
  z-index: 1;
  padding: 1.65rem 1.7rem 1.8rem;
  border-top: 7px solid var(--card-accent);
}

.service-card__tag {
  margin-bottom: 0.55rem;
  color: var(--card-accent);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--navy);
}

.service-card > div > p:not(.service-card__tag) {
  min-height: 4.8em;
  color: rgb(37 42 42 / 70%);
  font-size: 0.94rem;
}

.service-card--violet { --card-accent: var(--violet-blue); }
.service-card--green { --card-accent: var(--green); }
.service-card--orange { --card-accent: var(--orange); }
.service-card--pink { --card-accent: var(--pink); }
.service-card--navy { --card-accent: var(--navy); }
.service-card--sky { --card-accent: var(--sky); }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--card-accent);
  font-family: var(--display);
  font-weight: 700;
}

.text-link::after {
  margin-left: 0.55rem;
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Editorial scenes */
.editorial-scenes {
  margin-top: clamp(1rem, 4vw, 4rem);
}

.editorial-scene {
  display: grid;
  min-height: 610px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.editorial-scene__media {
  min-height: 610px;
}

[data-parallax-media] {
  position: relative;
  overflow: hidden;
}

[data-parallax-media] img {
  position: relative;
  top: -120px;
  width: 100%;
  height: calc(100% + 240px);
  object-fit: cover;
}

.editorial-scene:nth-child(2) [data-parallax-media] img {
  object-position: center 48%;
}

.editorial-scene:nth-child(3) [data-parallax-media] img {
  object-position: center 44%;
}

html.js-gsap-ready [data-parallax-media] img,
html.js-reveal-ready .reveal {
  will-change: transform, opacity;
}

.editorial-scene__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
  color: var(--paper);
}

.editorial-scene__copy h2 {
  max-width: 660px;
}

.editorial-scene__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgb(255 255 255 / 82%);
}

.editorial-scene__copy .eyebrow {
  color: #FFE29A;
}

.editorial-scene__copy .button {
  margin-top: 1rem;
}

.editorial-scene:nth-child(1) .editorial-scene__copy {
  background: var(--green);
}

.editorial-scene:nth-child(2) .editorial-scene__copy {
  background: var(--hero-purple);
}

.editorial-scene:nth-child(3) .editorial-scene__copy {
  background: var(--orange);
}

.editorial-scene--image-right .editorial-scene__media {
  order: 2;
}

.editorial-scene--image-right .editorial-scene__copy {
  order: 1;
}

/* Product carousel */
.featured-products {
  position: relative;
  width: 100%;
  padding-block: clamp(2.25rem, 4vh, 3.5rem);
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 8% 17%, rgb(78 88 183 / 9%) 0 70px, transparent 71px),
    radial-gradient(circle at 92% 84%, rgb(224 0 112 / 7%) 0 105px, transparent 106px),
    var(--soft-violet);
}

.featured-products .section-heading {
  max-width: 720px;
  margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.featured-products .section-heading h2 {
  font-size: clamp(2.25rem, 3.7vw, 3.5rem);
}

.featured-products .section-heading > p:last-child {
  margin-top: 0.75rem;
  font-size: 0.98rem;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-card {
  display: flex;
  min-width: calc((100% - 3rem) / 3);
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 1rem 2.5rem rgb(41 59 123 / 12%);
}

.product-card img {
  width: 100%;
  height: clamp(320px, 28vw, 360px);
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem 1.25rem 0;
  color: var(--hero-purple);
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.08;
}

.product-card p {
  margin-top: auto;
  padding: 0 1.25rem 1.25rem;
  color: rgb(37 42 42 / 68%);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-card--superhero-scene img { object-position: center 52%; }
.product-card--retro-panel img { object-position: center 34%; }
.product-card--sports-scene img { object-position: center; }
.product-card--dessert-table img { object-position: center; }
.product-card--pink-cylinders img { object-position: center 45%; }
.product-card--blue-gold-panel img { object-position: center 36%; }
.product-card--hero-cylinders img { object-position: center 46%; }
.product-card--blue-quince img { object-position: center 50%; }

.testimonial-card {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  padding: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial-card footer {
  margin-top: 1.25rem;
  color: var(--hero-purple);
  font-weight: 700;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 0.75rem;
}

.carousel__controls button {
  color: var(--paper);
  background: var(--violet-blue);
  font-size: 1.25rem;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel__controls button:hover {
  background: var(--pink);
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.carousel__dots button {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
}

.carousel__dots button::before {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 50%;
  background: rgb(78 88 183 / 26%);
  content: "";
  transition: background 180ms ease, transform 180ms ease;
}

.carousel__dots button:hover {
  background: transparent;
  transform: none;
}

.carousel__dots button:hover::before,
.carousel__dots button[aria-current="true"]::before {
  background: var(--pink);
  transform: scale(1.18);
}

/* Experience */
.experience {
  display: grid;
  width: 100%;
  padding-block: clamp(1.75rem, 3vh, 2.5rem);
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 8% 18%, rgb(244 161 61 / 14%) 0 105px, transparent 106px),
    radial-gradient(circle at 92% 84%, rgb(224 0 112 / 8%) 0 130px, transparent 131px),
    linear-gradient(135deg, #FFF9EC 0%, #F4EFFD 54%, #EDF8FD 100%);
}

.experience__media {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}

.experience__media::before,
.experience__media::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.experience__media::before {
  inset: -1.25rem 1.75rem 1.25rem -1.25rem;
  border-radius: 44% 56% 35% 65% / 51% 37% 63% 49%;
  background: var(--orange);
  transform: rotate(-3deg);
}

.experience__media::after {
  width: 105px;
  height: 105px;
  right: -0.5rem;
  bottom: -1rem;
  border: 16px solid var(--pink);
  border-radius: 50%;
}

.experience__media img {
  width: 100%;
  height: 100%;
  border-radius: 45% 55% 42% 58% / 52% 43% 57% 48%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.experience__copy {
  align-self: center;
}

.experience__copy h2 {
  color: var(--navy);
}

.experience__copy > p:not(.eyebrow) {
  color: rgb(37 42 42 / 72%);
}

.attribute-list {
  display: grid;
  padding: 0;
  margin: 2rem 0 0;
  gap: 0.85rem;
  list-style: none;
}

.attribute-list li {
  position: relative;
  display: grid;
  min-height: 92px;
  padding: 1.1rem 1.25rem 1.1rem 4.9rem;
  border-radius: 1.35rem;
  background: var(--soft-blue);
  align-content: center;
}

.attribute-list li::before {
  position: absolute;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  left: 1.25rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--sky);
  content: "✓";
  font-family: var(--display);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.attribute-list li:nth-child(2)::before { background: var(--green); }
.attribute-list li:nth-child(3)::before { background: var(--pink); }

.attribute-list strong,
.attribute-list span {
  display: block;
}

.attribute-list strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.1rem;
}

.attribute-list span {
  color: rgb(37 42 42 / 68%);
  font-size: 0.9rem;
}

/* Testimonials and information blocks */
.testimonials {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--soft-gold);
}

.information-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.information-section + .information-section {
  padding-top: 1rem;
}

.information-section__content h2 {
  color: var(--navy);
}

.information-section__content > p:not(.eyebrow) {
  color: rgb(37 42 42 / 72%);
}

.information-section__content .button {
  margin-top: 1rem;
}

.information-section > img {
  width: 100%;
  height: 470px;
  border-radius: var(--radius-lg) 7rem var(--radius-lg) 7rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.information-section--reverse .information-section__content {
  order: 2;
}

.information-section--reverse > img {
  order: 1;
  border-radius: 7rem var(--radius-lg) 7rem var(--radius-lg);
}

/* Trabajos reales, video y ubicación */
.real-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(6, clamp(190px, 16vw, 260px));
  grid-template-areas:
    "a a b"
    "a a c"
    "d e c"
    "d f f"
    "g f f"
    "h h i";
  gap: clamp(1rem, 2vw, 1.5rem);
}

.real-work-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft-violet);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

[data-collage-slot="a"] { grid-area: a; }
[data-collage-slot="b"] { grid-area: b; }
[data-collage-slot="c"] { grid-area: c; }
[data-collage-slot="d"] { grid-area: d; }
[data-collage-slot="e"] { grid-area: e; }
[data-collage-slot="f"] { grid-area: f; }
[data-collage-slot="g"] { grid-area: g; }
[data-collage-slot="h"] { grid-area: h; }
[data-collage-slot="i"] { grid-area: i; }

.real-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-collage-slot="a"] img { object-position: center 52%; }
[data-collage-slot="c"] img { object-position: center 72%; }
[data-collage-slot="d"] img { object-position: center 42%; }
[data-collage-slot="g"] img,
[data-collage-slot="i"] img { object-position: center 34%; }

.real-work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.6rem 1.15rem 1.05rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgb(37 42 42 / 82%));
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.real-work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.6rem 3.6rem rgb(37 42 42 / 20%);
}

.video-showcase,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.video-showcase__media {
  width: min(100%, 320px);
  margin-inline: auto;
  padding: 0.55rem;
  border-radius: calc(var(--radius-lg) - 0.5rem);
  background: var(--navy);
  box-shadow: var(--shadow);
  aspect-ratio: 478 / 850;
}

.video-showcase__media video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 0.9rem);
  background: #10172E;
  object-fit: contain;
}

.video-showcase__copy h2,
.location__content h2 {
  color: var(--navy);
}

.video-showcase__copy > p:not(.eyebrow),
.location__content > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgb(37 42 42 / 72%);
}

.location__content .location__schedule {
  display: inline-flex;
  margin: 0.25rem 0 0;
  padding: 0.55rem 0.8rem;
  border-radius: 0.8rem;
  color: var(--navy);
  background: var(--soft-gold);
  font-size: 0.88rem;
  line-height: 1.45;
}

.video-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 0.75rem;
}

.location-list {
  display: grid;
  align-items: stretch;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0.8rem;
}

.location-card {
  display: grid;
  height: 100%;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgb(41 59 123 / 12%);
  border-radius: 1.25rem;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 0.75rem 2rem rgb(41 59 123 / 8%);
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.location-card > div {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgb(224 0 112 / 28%);
  box-shadow: 0 1rem 2.4rem rgb(41 59 123 / 13%);
}

.location-card__index {
  display: grid;
  width: 3rem;
  height: 3rem;
  color: var(--paper);
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--violet-blue));
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
}

.location-card__area {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.location-card__address {
  margin-top: 0.2rem;
  color: rgb(37 42 42 / 76%);
  font-style: normal;
  line-height: 1.45;
}

.location-card__city {
  display: block;
  margin-top: 0.3rem;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card__map-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.location-card__map-link {
  margin-top: auto;
  color: var(--paper);
  background: linear-gradient(135deg, var(--pink), var(--violet-blue));
  box-shadow: 0 0.65rem 1.35rem rgb(224 0 112 / 18%);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-card__map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.85rem 1.65rem rgb(224 0 112 / 26%);
}

.location-card__map-link svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.location__photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.location__photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft-blue);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location__photo-card:first-child img {
  object-position: 50% 28%;
}

.location__photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.6rem 1.15rem 1.05rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgb(37 42 42 / 82%));
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.location__photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.6rem 3.6rem rgb(37 42 42 / 20%);
}

.location-map-region {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  grid-column: 1 / -1;
}

.location-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.9rem;
}

.location-map-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(41 59 123 / 12%);
  border-radius: 1.45rem;
  background: var(--paper);
  box-shadow: 0 0.9rem 2.2rem rgb(41 59 123 / 12%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2.8rem rgb(41 59 123 / 17%);
}

.location-map-card__frame {
  height: 210px;
  overflow: hidden;
  background: var(--soft-blue);
}

.location-map-card__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-card__body {
  display: flex;
  min-height: 220px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}

.location-map-card__eyebrow {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-map-card__body h3 {
  margin: 0.28rem 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.1rem;
}

.location-map-card__body address {
  margin-top: 0.25rem;
  color: rgb(37 42 42 / 72%);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.45;
}

.location-map-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  margin-top: auto;
  padding: 0.65rem 0.8rem;
  color: var(--paper);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--pink), var(--violet-blue));
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.location-map-card__link > span:last-child {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.location-map-card__link:hover > span:last-child {
  transform: translate(2px, -2px);
}

.location-map-fallback {
  padding: 1.25rem;
  color: var(--navy);
  border: 1px solid rgb(41 59 123 / 12%);
  border-radius: 1.25rem;
  background: var(--soft-blue);
  text-align: center;
}

.location-map-fallback small {
  display: block;
  margin-top: 0.4rem;
  color: rgb(37 42 42 / 72%);
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.35rem;
  gap: 1rem;
}

/* FAQ */
.faq {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, var(--soft-blue), var(--paper));
}

.faq__list {
  display: grid;
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  --faq-accent: var(--violet-blue);
  --faq-text: var(--paper);
  overflow: hidden;
  border-radius: 1.35rem;
  color: var(--faq-text);
  background: var(--faq-accent);
  box-shadow: 0 0.8rem 2rem color-mix(in srgb, var(--faq-accent) 20%, transparent);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
  color: inherit;
  background: transparent;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.faq-item button:focus-visible {
  outline: 0;
  outline-offset: 0;
  box-shadow:
    inset 0 0 0 3px var(--paper),
    inset 0 0 0 6px var(--ink) !important;
}

.faq-item button > span[aria-hidden="true"] {
  display: grid;
  min-width: 2.35rem;
  min-height: 2.35rem;
  margin-left: 1rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 17%);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] > span[aria-hidden="true"] {
  transform: scale(1.08);
}

.faq-item > div {
  padding: 0 1.3rem 1.35rem;
  color: inherit;
  font-size: 0.92rem;
}

.faq-item--violet { --faq-accent: var(--violet-blue); --faq-text: var(--paper); }
.faq-item--green { --faq-accent: var(--green-aa); --faq-text: var(--paper); }
.faq-item--orange { --faq-accent: var(--orange); --faq-text: var(--ink); }
.faq-item--pink { --faq-accent: var(--pink); --faq-text: var(--paper); }
.faq-item--navy { --faq-accent: var(--navy); --faq-text: var(--paper); }
.faq-item--sky { --faq-accent: var(--sky-aa); --faq-text: var(--paper); }

/* Final CTA */
.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 22%, rgb(255 255 255 / 12%) 0 4px, transparent 5px),
    radial-gradient(circle at 87% 31%, rgb(255 255 255 / 12%) 0 5px, transparent 6px),
    linear-gradient(120deg, var(--pink), var(--hero-purple) 52%, var(--violet-blue));
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  border: 2px dashed rgb(255 255 255 / 21%);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 360px;
  height: 360px;
  top: -185px;
  right: 4%;
}

.final-cta::after {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: 7%;
}

.final-cta__content {
  width: min(850px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 9rem) 0 8rem;
  text-align: center;
}

.final-cta .eyebrow {
  color: #FFE29A;
}

.final-cta h2 {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.25rem auto 0;
  color: rgb(255 255 255 / 84%);
}

.final-cta .button {
  margin-top: 1.75rem;
}

.final-cta .cloud-bank {
  height: 66px;
}

/* Footer */
.site-footer {
  padding: clamp(2.75rem, 5vw, 3.75rem) max(20px, calc((100% - 1180px) / 2)) 1.1rem;
  color: rgb(255 255 255 / 72%);
  background: #202B50;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 1.7fr 1.05fr 1.12fr;
  gap: clamp(1.25rem, 2.4vw, 2.35rem);
  align-items: start;
}

.site-footer__brand img {
  width: 138px;
  height: 112px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.55rem 0.8rem rgb(0 0 0 / 24%));
}

.site-footer__brand p {
  max-width: 220px;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer h2 {
  margin-bottom: 0.55rem;
  color: var(--paper);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.05rem;
  list-style: none;
}

.site-footer__categories ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.site-footer a:not(.button) {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  line-height: 1.3;
  transition: color 160ms ease;
}

.site-footer a:not(.button):hover {
  color: #FFE29A;
}

.footer-whatsapp-list {
  display: grid;
}

.footer-whatsapp-link {
  color: #9DDFFF;
  font-weight: 600;
}

.site-footer section > p[data-business-note] {
  font-size: 0.82rem;
  line-height: 1.55;
}

.social-link {
  color: #9DDFFF;
  font-weight: 600;
}

.site-footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button--footer {
  min-height: 46px;
  margin-top: 0.55rem;
  padding: 0.65rem 1.2rem;
  color: var(--paper);
  background: var(--pink);
}

.site-footer__legal {
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.78rem;
  text-align: center;
}

.floating-socials {
  position: fixed;
  z-index: 80;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.floating-social {
  display: grid;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  box-shadow: 0 0.9rem 2rem rgb(37 42 42 / 25%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-social:active {
  transform: scale(0.94);
}

.floating-social:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--navy), 0 1rem 2.2rem rgb(37 42 42 / 32%);
}

.floating-social svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-social--facebook {
  background: #1877F2;
}

.floating-social--tiktok {
  background: #111111;
}

.floating-social--whatsapp {
  background: var(--green);
}

@media (hover: hover) and (pointer: fine) {
  .floating-social:hover {
    transform: translateX(-4px) scale(1.04);
    box-shadow: 0 1rem 2.2rem rgb(37 42 42 / 32%);
  }
}

@media (min-width: 901px) {
  .video-showcase__media {
    width: min(100%, 320px, 39.4vh);
  }

  .experience__media {
    height: clamp(500px, 70vh, 560px);
    min-height: 0;
  }

  .experience__copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.7rem, 3.1vw, 3.25rem);
    line-height: 0.98;
  }

  .experience__copy .eyebrow {
    margin-bottom: 0.6rem;
  }

  .experience__copy > p:not(.eyebrow) {
    line-height: 1.55;
  }

  .experience .attribute-list {
    margin-top: 1rem;
    gap: 0.55rem;
  }

  .experience .attribute-list li {
    min-height: 72px;
    padding-block: 0.7rem;
  }
}

@media (max-width: 1199px) {
  .site-header__inner {
    width: calc(100% - 32px);
    grid-template-columns: 140px minmax(0, 1fr) 44px;
    gap: 0.75rem;
  }

  .brand {
    width: 110px;
    height: 82px;
  }

  .site-navigation {
    gap: 0.15rem;
  }

  .nav-pill {
    min-height: 46px;
    padding-inline: 0.78rem;
    font-size: 0.9rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 2.5rem;
  }

  .hero-collage {
    height: 560px;
    min-height: 0;
  }

  .indicators__grid,
  .local-services__grid,
  .service-grid,
  .faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-width: calc((100% - 1.5rem) / 2);
  }

  .editorial-scene,
  .editorial-scene__media {
    min-height: 540px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__categories {
    grid-row: 2;
    grid-column: 1 / span 2;
  }

  .site-footer__contact {
    grid-row: 1;
    grid-column: 3;
  }

  .site-footer__social {
    grid-row: 2;
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    min-height: auto;
    padding-top: 4rem;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero-collage {
    width: min(660px, 100%);
    height: 550px;
    min-height: 0;
    margin-inline: auto;
  }

  .editorial-scene {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .editorial-scene__copy {
    padding: 3rem;
  }

  .experience,
  .information-section,
  .video-showcase,
  .location {
    grid-template-columns: 1fr;
  }

  .real-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, clamp(220px, 36vw, 340px));
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f f"
      "g h"
      "i i";
  }

  .location__photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location__photo-card {
    height: 320px;
    min-height: 320px;
  }

  .location-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .experience__media {
    width: min(660px, calc(100% - 1rem));
    min-height: 560px;
    margin-inline: auto;
  }

  .information-section__content,
  .information-section--reverse .information-section__content,
  .information-section > img,
  .information-section--reverse > img {
    order: initial;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "nav contact"
      "categories categories"
      "social social";
    gap: 1.5rem 1rem;
  }

  .site-footer__brand {
    grid-area: brand;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
  }

  .site-footer__brand img {
    width: 110px;
    height: 90px;
  }

  .site-footer__brand p {
    margin-top: 0;
  }

  .site-footer__nav {
    grid-area: nav;
  }

  .site-footer__categories {
    grid-area: categories;
    grid-column: auto;
  }

  .site-footer__contact {
    grid-area: contact;
  }

  .site-footer__social {
    grid-area: social;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100% - 32px, 42rem);
    --section-space: 5.25rem;
    --header-height: 76px;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5.25rem);
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3.75rem);
  }

  .site-header {
    height: 76px;
  }

  .site-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .brand {
    width: 72px;
    height: 68px;
    margin-right: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 120;
    display: inline-grid;
    place-items: center;
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 6rem max(16px, calc((100% - 42rem) / 2)) 2rem;
    overflow-y: auto;
    background: var(--paper);
    align-content: start;
    gap: 0.4rem;
    transform: translateY(-0.5rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
  }

  .site-navigation.is-open,
  .menu-toggle[aria-expanded="true"] + .site-navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .no-js .site-navigation {
    position: static;
    display: none;
  }

  .nav-pill {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 1rem;
    color: var(--paper);
    font-size: 0.95rem;
  }

  .nav-pill:hover {
    transform: translateX(3px);
  }

  .nav-pill--violet { color: var(--paper); background: var(--violet-blue); }
  .nav-pill--green { color: var(--paper); background: var(--green-aa); }
  .nav-pill--orange { color: var(--ink); background: var(--orange); }
  .nav-pill--pink { color: var(--paper); background: var(--pink); }
  .nav-pill--navy { color: var(--paper); background: var(--navy); }
  .nav-pill--sky { color: var(--paper); background: var(--sky-aa); }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown.is-open::after {
    display: none;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    padding: 0.35rem 0 0.35rem 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown__menu a {
    border-left: 3px solid var(--violet-blue);
    border-radius: 0 0.65rem 0.65rem 0;
    background: var(--soft-violet);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 4.25rem 0 7.5rem;
    gap: 3rem;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy h1 {
    margin-inline: auto;
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  .hero__copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero-collage {
    --hero-marquee-gap: 0.7rem;
    height: 460px;
    min-height: 0;
  }

  .hero-collage__column {
    height: calc(100% + 120px);
    margin-top: -60px;
  }

  .indicators {
    margin-top: -0.5rem;
  }

  .indicators__grid,
  .local-services__grid,
  .service-grid,
  .faq__list {
    grid-template-columns: 1fr;
  }

  .indicator-card {
    min-height: 150px;
  }

  .service-card > img {
    height: clamp(245px, 62vw, 390px);
  }

  .service-card > div > p:not(.service-card__tag) {
    min-height: 0;
  }

  .real-work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .real-work-card,
  [data-collage-slot] {
    height: clamp(280px, 78vw, 430px);
    grid-area: auto;
    grid-column: auto;
  }

  .location__photo-grid {
    grid-template-columns: 1fr;
  }

  .location__photo-card {
    height: 300px;
    min-height: 300px;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .location-map-grid {
    grid-template-columns: 1fr;
  }

  .location-map-card__frame {
    height: 250px;
  }

  .location-map-card__body {
    min-height: 190px;
  }

  .editorial-scene {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .editorial-scene__media,
  .editorial-scene--image-right .editorial-scene__media {
    min-height: 430px;
    order: 1;
  }

  .editorial-scene__copy,
  .editorial-scene--image-right .editorial-scene__copy {
    min-height: 440px;
    padding: 3.5rem max(16px, calc((100% - 42rem) / 2));
    order: 2;
  }

  .product-card {
    min-width: 88%;
  }

  .carousel__controls {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.4rem;
  }

  .carousel__dots {
    min-width: 0;
    overflow-x: auto;
    justify-content: flex-start;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .carousel__dots::-webkit-scrollbar {
    display: none;
  }

  .carousel__dots button {
    flex: 0 0 44px;
  }

  .product-card img { height: clamp(280px, 78vw, 360px); }

  .experience__media {
    min-height: 470px;
  }

  .information-section > img {
    height: 390px;
    border-radius: var(--radius-lg) 5rem var(--radius-lg) 5rem;
  }

  .information-section--reverse > img {
    border-radius: 5rem var(--radius-lg) 5rem var(--radius-lg);
  }

  .final-cta {
    min-height: 490px;
  }

  .site-footer {
    padding-top: 2.75rem;
    padding-bottom: 4.75rem;
  }

  .floating-socials {
    right: calc(0.625rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
    flex-direction: row;
    gap: 0.4rem;
  }

  .floating-social {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    box-shadow: 0 0.45rem 1rem rgb(37 42 42 / 20%);
  }

  .floating-social svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 419px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 1.65rem;
  }

  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13.5vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 2.85rem);
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero__actions {
    display: grid;
  }

  .hero-collage {
    height: 380px;
    min-height: 0;
  }

  .hero-collage__caption {
    font-size: 0.78rem;
  }

  .indicator-card,
  .service-card > div {
    padding-inline: 1.25rem;
  }

  .editorial-scene__media {
    min-height: 350px;
  }

  .editorial-scene__copy {
    min-height: 410px;
    padding-inline: 1.25rem;
  }

  .product-card {
    min-width: 94%;
  }

  .experience__media {
    min-height: 390px;
  }

  .experience__media::after {
    width: 78px;
    height: 78px;
    border-width: 11px;
  }

  .attribute-list li {
    padding-left: 4.25rem;
  }

  .attribute-list li::before {
    left: 0.85rem;
  }

  .information-section > img {
    height: 320px;
  }

  .faq-item button {
    min-height: 78px;
    padding-inline: 1rem;
    font-size: 0.98rem;
  }

  .final-cta__content {
    width: calc(100% - 24px);
  }

  .site-footer {
    padding-top: 2.5rem;
    padding-inline: 16px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "contact"
      "categories"
      "social";
  }

  .site-footer__brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .site-footer__brand img {
    width: 88px;
    height: 76px;
  }

  .site-footer__categories ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.05rem 0.75rem;
  }

  .floating-socials {
    right: calc(0.5rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    gap: 0.3rem;
  }

  .floating-social {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .floating-social svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-parallax-media] img {
    top: 0;
    height: 100%;
    transform: none !important;
  }

  .hero-collage__column {
    transform: none !important;
    will-change: auto;
  }

  .hero-collage__track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero-collage__sequence[aria-hidden="true"] {
    display: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .whatsapp-option {
    transition: none !important;
    animation: none !important;
  }

  .real-work-card,
  .real-work-card:hover,
  .location-card,
  .location-card:hover,
  .location__photo-card,
  .location__photo-card:hover {
    transform: none !important;
    transition: none !important;
  }
}
