:root {
  --white: #fff;
  --slate: #343a4d;
  --mist: #f0f0f0;
  --cream: #f6f0e2;
  --soft: #eaeae7;
  --charcoal: #3d3b3a;
  --ink: var(--charcoal);
  --header-height: 104px;
  --page-padding: clamp(24px, 5.2vw, 84px);
  --kicker-size: clamp(0.68rem, 0.72vw, 0.82rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--slate);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--slate);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--page-padding);
  transition: height 220ms ease, background 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(52, 58, 77, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open {
  height: 82px;
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(126px, 11vw, 166px);
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 54px);
}

.site-nav a {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.61rem, 0.66vw, 0.73rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.scene {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  --parallax-offset: 0px;
  --scene-scale: 1.075;
}

.scene.is-in-view {
  --scene-scale: 1.035;
}

.scene-image,
.diagonal-panel,
.diagonal-panel img,
.scene-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-image,
.diagonal-panel img {
  object-fit: cover;
  transform: translate3d(0, var(--parallax-offset), 0) scale(var(--scene-scale));
  transform-origin: center;
  transition: transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.scene-artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.scene-artwork img {
  position: absolute;
  top: -4%;
  left: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(var(--artwork-scale, 1.015));
  transform-origin: center;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 450ms ease;
  will-change: transform;
}

.uses-scene-artwork main > section {
  --artwork-scale: 1.015;
}

.motion-ready .uses-scene-artwork main > .scene {
  --artwork-scale: 1.055;
}

.motion-ready .uses-scene-artwork main > .scene.is-in-view {
  --artwork-scale: 1.015;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .uses-scene-artwork main > section:hover {
    --artwork-scale: 1.035;
  }
}

.scene-shade {
  z-index: 2;
  pointer-events: none;
}

.hero .scene-image {
  object-position: center 20%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(61, 59, 58, 0.48) 0%, rgba(61, 59, 58, 0.06) 35%, rgba(52, 58, 77, 0.62) 100%),
    linear-gradient(90deg, rgba(52, 58, 77, 0.16), rgba(61, 59, 58, 0.02));
}

.hero-copy,
.products-copy,
.purchase-copy,
.team-copy {
  position: absolute;
  z-index: 5;
}

.hero-copy {
  top: 53%;
  left: 50%;
  width: min(680px, calc(100% - 48px));
  text-align: center;
  transform: translate(-50%, -50%);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: var(--kicker-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.26);
}

h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.75rem);
}

h2 strong {
  font-weight: 800;
}

.outline-button {
  min-width: 168px;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0 28px;
  background: rgba(61, 59, 58, 0.22);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  width: 38px;
  height: 36px;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.44));
}

.scroll-cue span,
.scroll-cue span::after {
  position: absolute;
}

.scroll-cue span {
  top: 2px;
  left: 6px;
  width: 26px;
  height: 26px;
  animation: scroll-arrow 1500ms ease-in-out infinite;
}

.scroll-cue span::after {
  inset: 0;
  color: #fff;
  content: "south";
  font-family: "Material Symbols Outlined";
  font-size: 26px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.scroll-cue:hover span,
.scroll-cue:focus-visible span {
  animation-play-state: paused;
}

.scroll-cue:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 5px;
  border-radius: 50%;
}

@keyframes scroll-arrow {
  0%, 100% { opacity: 0.5; transform: translateY(-2px); }
  50% { opacity: 1; transform: translateY(3px); }
}

.diagonal-panel {
  z-index: 0;
}

.diagonal-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(2, 8, 12, 0.18);
}

.diagonal-products .panel-a {
  clip-path: polygon(0 0, 64% 0, 34% 100%, 0 100%);
}

.diagonal-products .panel-b {
  clip-path: polygon(64% 0, 100% 0, 100% 100%, 34% 100%);
}

.diagonal-products .panel-a img {
  object-position: 28% center;
}

.diagonal-products .panel-b img {
  object-position: 65% center;
}

.diagonal-line {
  position: absolute;
  z-index: 3;
  top: -10%;
  left: 49%;
  width: 2px;
  height: 122%;
  background: var(--cream);
  clip-path: inset(0 0 100% 0);
  opacity: 0.9;
  pointer-events: none;
  transition: clip-path 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) 180ms;
}

.scene.is-in-view .diagonal-line {
  clip-path: inset(0);
}

.diagonal-products .diagonal-line {
  transform: rotate(17deg);
}

.products-shade {
  background:
    linear-gradient(90deg, rgba(52, 58, 77, 0.58) 0%, rgba(61, 59, 58, 0.12) 54%, rgba(52, 58, 77, 0.38) 100%),
    linear-gradient(180deg, rgba(61, 59, 58, 0.35), transparent 32%, rgba(52, 58, 77, 0.38));
}

.products-copy {
  top: 50%;
  left: var(--page-padding);
  width: min(480px, 42vw);
  transform: translateY(-50%);
}

.products-copy h2 {
  margin-bottom: 42px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.feature-list span {
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-list .material-symbols-outlined {
  width: 28px;
  color: var(--cream);
  font-size: 1.45rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  letter-spacing: 0;
  text-transform: none;
}

.products-button {
  position: absolute;
  right: 18%;
  bottom: 10%;
  z-index: 5;
}

.diagonal-purchase .panel-a {
  clip-path: polygon(0 0, 72% 0, 28% 100%, 0 100%);
}

.diagonal-purchase .panel-b {
  clip-path: polygon(72% 0, 100% 0, 100% 100%, 28% 100%);
}

.diagonal-purchase .panel-a img {
  inset: 0 auto 0 0;
  width: 72%;
  object-position: center center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.0);
}

.diagonal-purchase .panel-b img {
  inset: 0;
  width: 100%;
  object-position: center center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.0);
}

.diagonal-purchase .diagonal-line {
  left: 50%;
  transform: rotate(23deg);
}

@media (min-width: 801px) {
  .diagonal-purchase .diagonal-line {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    clip-path: inset(0 0 100% 0);
  }

  .scene.diagonal-purchase.is-in-view .diagonal-line {
    clip-path: polygon(71.9% 0, 72.1% 0, 28.1% 100%, 27.9% 100%);
  }
}

.purchase-subtitle {
  margin: -12px 0 28px;
  color: var(--cream);
  font-size: clamp(0.72rem, 0.86vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purchase-shade {
  background:
    linear-gradient(90deg, rgba(52, 58, 77, 0.24), rgba(61, 59, 58, 0.04) 52%, rgba(52, 58, 77, 0.3)),
    linear-gradient(180deg, rgba(61, 59, 58, 0.42), transparent 35%, rgba(52, 58, 77, 0.5));
}

.purchase-copy {
  top: 55%;
  left: 50%;
  width: min(680px, calc(100% - 48px));
  text-align: center;
  transform: translate(-50%, -50%);
}

.purchase-copy h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
}

.team .scene-image {
  object-position: center 55%;
}

.team-shade {
  background:
    linear-gradient(90deg, rgba(52, 58, 77, 0.9) 0%, rgba(61, 59, 58, 0.6) 31%, rgba(52, 58, 77, 0.08) 70%),
    linear-gradient(180deg, rgba(61, 59, 58, 0.3), transparent 44%, rgba(52, 58, 77, 0.36));
}

.team-copy {
  top: 51%;
  left: var(--page-padding);
  width: min(560px, 48vw);
  transform: translateY(-50%);
}

.team-copy h2 {
  margin-bottom: 36px;
  font-size: clamp(2.65rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: none;
}

.team-copy h2 strong {
  text-transform: uppercase;
}

.contact-anchor {
  position: absolute;
  bottom: 0;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .hero-copy[data-reveal] {
  transform: translate(-50%, calc(-50% + 32px));
}

.motion-ready .hero-copy[data-reveal].is-revealed {
  transform: translate(-50%, -50%);
}

.motion-ready .purchase-copy[data-reveal] {
  transform: translate(-50%, calc(-50% + 32px));
}

.motion-ready .purchase-copy[data-reveal].is-revealed {
  transform: translate(-50%, -50%);
}

.motion-ready .products-button[data-reveal] {
  transform: translate3d(0, 28px, 0);
}

.motion-ready .products-button[data-reveal].is-revealed {
  transform: translate3d(0, 0, 0);
}

.site-footer {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) var(--page-padding) 28px;
  border-top: 1px solid rgba(246, 240, 226, 0.3);
  background: var(--slate);
  color: var(--mist);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(246, 240, 226, 0.035), transparent 48%);
  pointer-events: none;
}

.footer-cta,
.footer-grid,
.footer-bottom,
.footer-commercial {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding-bottom: clamp(56px, 6vw, 84px);
  border-bottom: 1px solid rgba(234, 234, 231, 0.2);
}

.footer-cta h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 6.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: none;
}

.footer-cta-link {
  min-width: 220px;
  min-height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--cream);
  border-radius: 999px;
  padding: 0 26px;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-cta-actions {
  display: grid;
  gap: 12px;
  align-content: end;
}

.footer-community-link {
  background: transparent;
  color: var(--cream);
}

.footer-community-link:hover,
.footer-community-link:focus-visible {
  background: var(--cream);
  color: var(--charcoal);
}

.footer-cta-link:hover,
.footer-cta-link:focus-visible {
  background: transparent;
  color: var(--cream);
  transform: translateY(-3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(210px, 0.7fr);
  gap: clamp(42px, 8vw, 120px);
  padding-block: clamp(54px, 6vw, 78px);
}

.footer-brand img {
  width: 132px;
  height: 82px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p,
.footer-contact a {
  max-width: 310px;
  margin: 18px 0 0;
  color: rgba(240, 240, 240, 0.68);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-label {
  margin: 0 0 20px;
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  position: relative;
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--cream);
}

.footer-contact a {
  display: inline-block;
  margin-top: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(234, 234, 231, 0.2);
  color: rgba(240, 240, 240, 0.48);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-commercial {
  max-width: 100%;
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 240, 226, 0.2);
  color: rgba(246, 240, 226, 0.82);
  font-size: clamp(0.6rem, 0.72vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.footer-commercial::-webkit-scrollbar {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

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

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .scene:hover {
    --scene-scale: 1.055;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 88px;
    --page-padding: 22px;
    --kicker-size: 0.64rem;
  }

  .site-header {
    height: var(--header-height);
    padding: 12px 20px;
    transition: background 180ms ease, backdrop-filter 180ms ease;
  }

  .site-header.is-scrolled {
    height: var(--header-height);
    min-height: var(--header-height);
    background: rgba(52, 58, 77, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open {
    height: var(--header-height);
    min-height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
  }

  .brand {
    width: 120px;
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    background: rgba(52, 58, 77, 0.98);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .scene {
    height: 100svh;
    min-height: 640px;
  }

  .hero .scene-image {
    object-position: 50% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(61, 59, 58, 0.48), rgba(61, 59, 58, 0.04) 36%, rgba(52, 58, 77, 0.68));
  }

  .hero-copy {
    top: 64%;
    width: calc(100% - 36px);
    text-align: center;
  }

  .section-kicker {
    margin-bottom: 10px;
    letter-spacing: 0.3em;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(2.05rem, 9vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    letter-spacing: 0.13em;
  }

  .outline-button {
    min-width: 148px;
    min-height: 43px;
    font-size: 0.65rem;
  }

  .scroll-cue {
    bottom: 25px;
  }

  .diagonal-products .panel-a,
  .diagonal-purchase .panel-a {
    clip-path: polygon(0 0, 100% 0, 100% 46%, 0 63%);
  }

  .diagonal-products .panel-b,
  .diagonal-purchase .panel-b {
    clip-path: polygon(0 63%, 100% 46%, 100% 100%, 0 100%);
  }

  .diagonal-products .panel-a img,
  .diagonal-products .panel-b img,
  .diagonal-purchase .panel-a img,
  .diagonal-purchase .panel-b img {
    object-position: center;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.0);
  }

  .diagonal-purchase .panel-a img,
  .diagonal-purchase .panel-b img {
    inset: 0;
    width: 100%;
    object-fit: contain;
    background: var(--charcoal);
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1);
  }

  .diagonal-purchase .panel-a img {
    object-position: center center;
  }

  .diagonal-line,
  .diagonal-products .diagonal-line,
  .diagonal-purchase .diagonal-line {
    top: 54.5%;
    left: -5%;
    width: 110%;
    height: 2px;
    transform: rotate(-9.5deg);
    transform-origin: center;
  }

  .products-shade {
    background:
      linear-gradient(180deg, rgba(52, 58, 77, 0.58), rgba(61, 59, 58, 0.16) 45%, rgba(52, 58, 77, 0.1) 64%, rgba(52, 58, 77, 0.5)),
      linear-gradient(90deg, rgba(61, 59, 58, 0.34), transparent);
  }

  .products-copy {
    top: 25%;
    left: 22px;
    width: calc(100% - 44px);
    transform: none;
  }

  .products-copy h2 {
    margin-bottom: 28px;
  }

  .feature-list {
    gap: 13px;
    font-size: 0.64rem;
  }

  .products-button {
    right: 50%;
    bottom: 10%;
    transform: translateX(50%);
  }

  .products-button:hover,
  .products-button:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }

  .purchase-shade {
    background: linear-gradient(180deg, rgba(52, 58, 77, 0.4), rgba(61, 59, 58, 0.08) 44%, rgba(52, 58, 77, 0.38));
  }

  .purchase-copy {
    top: 56%;
    width: calc(100% - 40px);
  }

  .purchase-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(1.85rem, 8.8vw, 2.7rem);
    line-height: 1.08;
  }

  .team .scene-image {
    object-position: 52% center;
  }

  .team-shade {
    background:
      linear-gradient(90deg, rgba(52, 58, 77, 0.86), rgba(61, 59, 58, 0.2) 82%),
      linear-gradient(180deg, rgba(61, 59, 58, 0.28), transparent 48%, rgba(52, 58, 77, 0.54));
  }

  .team-copy {
    top: 53%;
    left: 24px;
    width: calc(100% - 48px);
  }

  .team-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .site-footer {
    padding: 70px 22px 24px;
  }

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

  .footer-cta {
    gap: 34px;
    align-items: start;
    padding-bottom: 54px;
  }

  .footer-cta h2 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
    line-height: 0.98;
  }

  .footer-cta-link {
    width: min(100%, 260px);
  }

  .footer-grid {
    gap: 42px;
    padding-block: 52px;
  }

  .footer-brand img {
    width: 112px;
    height: 68px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    line-height: 1.5;
  }

  .footer-commercial {
    margin-top: 18px;
    padding-top: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.025em;
  }

  .whatsapp-float {
    right: 17px;
    bottom: max(17px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }

  .scene {
    --parallax-offset: 0px !important;
    --scene-scale: 1.035 !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-ready .hero-copy[data-reveal] {
    transform: translate(-50%, -50%) !important;
  }

  .motion-ready .purchase-copy[data-reveal] {
    transform: translate(-50%, -50%) !important;
  }

  .scene-artwork img {
    transform: none !important;
  }
}

@media (max-width: 800px) {
  .products-copy h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(1.7rem, 8.2vw, 2.8rem);
    letter-spacing: 0.1em;
  }
}

.brand img {
  width: 220%;
  left: -60%;
}

.products-copy,
.team-copy {
  left: var(--page-padding);
  text-align: left;
  transform: translateY(-50%);
}

.feature-list {
  justify-items: start;
}

.team-copy .outline-button {
  position: static;
  left: auto;
  transform: none;
}

.team-copy .outline-button:hover,
.team-copy .outline-button:focus-visible {
  transform: translateY(-2px);
}

.motion-ready .products-copy[data-reveal],
.motion-ready .team-copy[data-reveal] {
  transform: translateY(calc(-50% + 32px));
}

.motion-ready .products-copy[data-reveal].is-revealed,
.motion-ready .team-copy[data-reveal].is-revealed {
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .brand img {
    width: 210%;
    left: -55%;
  }

  .products-copy,
  .team-copy {
    width: calc(100% - 44px);
    left: 22px;
    text-align: left;
    transform: none;
  }

  .products-copy { top: 25%; }
  .team-copy { top: 53%; }
}

.hero-kicker {
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  letter-spacing: 0.2em;
}

.hero-audience {
  margin: -12px 0 24px;
  color: var(--white);
  font-size: var(--kicker-size);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-copy h1 {
  width: 100%;
  text-align: center;
}

.hero-copy h1 span {
  display: block;
  width: max-content;
  margin-inline: auto;
}

.hero-copy h1 span:first-child {
  transform: translateX(-6%);
}

.hero-copy h1 span:last-child {
  transform: translateX(6%);
}

.products-button {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.products-button:hover,
.products-button:focus-visible {
  transform: translate(-50%, -2px);
}

.motion-ready .products-button[data-reveal] {
  transform: translate(-50%, 28px);
}

.motion-ready .products-button[data-reveal].is-revealed {
  transform: translate(-50%, 0);
}

.team-copy .outline-button {
  position: relative;
  left: calc(50vw - var(--page-padding));
  transform: translateX(-50%);
}

.team-copy .outline-button:hover,
.team-copy .outline-button:focus-visible {
  transform: translate(-50%, -2px);
}

.whatsapp-float {
  border: 2px solid var(--cream);
  background: var(--slate);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.whatsapp-float img {
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--cream);
}

.whatsapp-float:hover img,
.whatsapp-float:focus-visible img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(12%) saturate(1158%) hue-rotate(190deg) brightness(91%);
}

.footer-cta h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.footer-cta-link {
  padding-inline: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 240, 226, 0.62);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--cream);
  color: var(--slate);
  transform: translateY(-2px);
}

.social-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (max-width: 800px) {
  .hero-audience {
    max-width: 320px;
    margin: -8px auto 22px;
    font-size: 0.58rem;
  }

  .team-copy .outline-button {
    left: calc(50vw - 22px);
  }
}
.story-scene {
  isolation: isolate;
  background: var(--charcoal);
}

.story-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) translateY(var(--parallax-offset, 0));
}

.story-photo-store {
  clip-path: polygon(0 0, 58% 0, 39% 100%, 0 100%);
}

.story-photo-store img {
  right: auto;
  width: 58%;
  object-position: 50% 34%;
}

.story-photo-stock {
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 39% 100%);
}

.story-photo-stock img {
  left: 0;
  right: 0;
  width: 100%;
  object-position: 50% 50%;
}

.story-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 11, 15, 0.52), rgba(8, 11, 15, 0.28) 52%, rgba(8, 11, 15, 0.58));
}

.story-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 76vw);
  text-align: center;
  transform: translate(-50%, -50%);
}

.motion-ready .story-copy[data-reveal] {
  transform: translate(-50%, calc(-50% + 32px));
}

.motion-ready .story-copy[data-reveal].is-revealed {
  transform: translate(-50%, -50%);
}

.story-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
}

.story-copy h2 strong {
  color: inherit;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: inherit;
}

@media (max-width: 800px) {
  .story-photo-store {
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 58%);
  }

  .story-photo-store img {
    left: 0;
    width: 100%;
    object-position: center top;
  }

  .story-photo-stock {
    clip-path: polygon(0 58%, 100% 38%, 100% 100%, 0 100%);
  }

  .story-photo-stock img {
    left: 0;
    right: auto;
    width: 100%;
    object-position: center 50%;
  }

  .story-photo img {
    object-fit: contain;
    background: var(--charcoal);
    transform: scale(1) translateY(var(--parallax-offset, 0));
  }

  .story-copy {
    top: 55%;
    width: calc(100% - 48px);
  }

  .story-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 10vw, 3.15rem);
    letter-spacing: -0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue span,
  .scroll-cue span::after {
    animation: none;
  }

  .motion-ready .story-copy[data-reveal] {
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 800px) {
  body[data-page="home"] #trayectoria .story-photo-store {
    clip-path: none;
  }

  body[data-page="home"] #trayectoria .story-photo-store img {
    width: 100%;
    height: 100%;
    object-position: center top;
  }

  body[data-page="home"] #trayectoria .story-photo-stock {
    display: none;
  }

  #trayectoria .story-photo img {
    object-fit: cover;
    background: none;
  }

  #compra > .diagonal-panel {
    display: block;
  }

  #compra > .diagonal-panel img {
    object-fit: cover;
    background: none;
  }

  body[data-page="home"] #compra > .diagonal-panel.panel-a,
  body[data-page="home"] #compra > .diagonal-line {
    display: none;
  }

  body[data-page="home"] #compra > .diagonal-panel.panel-b {
    display: block;
    clip-path: none;
  }

  body[data-page="home"] #compra > .diagonal-panel.panel-b img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
