@font-face {
  font-family: "Thunder";
  src: url("assets/fonts/thunder-extrabold.otf") format("opentype"),
       url("assets/fonts/thunder-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thunder";
  src: url("assets/fonts/thunder-thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thunder LC";
  src: url("assets/fonts/thunder-lc.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fffdf8;
  --ink: #073f35;
  --charcoal: #10231f;
  --pink: #dc305b;
  --magenta: #f2a43a;
  --blue: #0c7b6d;
  --aqua: #aee3df;
  --lilac: #d8c5ef;
  --mango: #f7dda1;
  --gradient: linear-gradient(150deg, var(--pink), var(--magenta) 48%, var(--blue));
  --display: "Thunder", Impact, sans-serif;
  --condensed: "Thunder LC", "Arial Narrow", sans-serif;
  --body: "Open Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --glow: 0 2px 20px 2px #fffdf8;
}

* { box-sizing: border-box; }

html {
  background: var(--charcoal);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
p { letter-spacing: 0; }
button, input, textarea { border: 0; color: inherit; font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
img { max-width: 100%; }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 300;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 100px;
  background: #fff;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-nav {
  position: fixed;
  z-index: 99;
  top: 40px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 90px), 1350px);
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  pointer-events: none;
  transform: translateX(-50%);
}

.brand, .nav-actions, .cart-panel { pointer-events: auto; }

.brand {
  display: grid;
  width: 97px;
  height: 63px;
  place-items: center;
  padding: 5px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--glow);
  transition: background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}
.brand:hover { opacity: 0.9; }
.brand-full, .brand-eye { font-family: var(--display); font-size: 34px; font-weight: 700; line-height: .8; }
.brand-eye { display: none; font-size: 30px; }

.nav-actions {
  display: flex;
  width: auto;
  height: 45px;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.nav-pill {
  display: inline-flex;
  width: 112px;
  height: 45px;
  flex: 0 0 112px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--glow);
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.35s ease, color 0.35s ease;
}
.nav-pill:hover { transform: scale(1.1); }
.nav-actions > a.nav-pill { width: 112px; height: 45px; }
.cart-toggle { width: 112px; gap: 0; padding: 10px 15px; font-size: 20px; font-weight: 600; line-height: 24px; letter-spacing: 0; }
.cart-toggle span { font-size: inherit; font-weight: inherit; line-height: inherit; }

.site-nav.is-over-dark .brand,
.site-nav.is-over-dark .nav-pill {
  background: #fff;
  box-shadow: var(--glow);
}

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

.cart-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 24px;
  background: rgba(7, 63, 53, .62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.cart-panel.is-open { visibility: visible; opacity: 1; pointer-events: auto; }

.club-dialog {
  position: relative;
  display: grid;
  width: min(1060px, calc(100vw - 48px));
  max-height: min(730px, calc(100vh - 48px));
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 16px 16px 0 rgba(7, 63, 53, .42);
  color: var(--ink);
  opacity: 0;
  transform: translateY(28px) rotate(-.35deg) scale(.96);
  transition: opacity .35s ease, transform .55s var(--ease);
}
.cart-panel.is-open .club-dialog { opacity: 1; transform: translateY(0) rotate(0) scale(1); }

.club-close {
  position: absolute;
  z-index: 6;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  transition: box-shadow .25s ease, transform .25s var(--ease);
}
.club-close:hover { box-shadow: 1px 1px 0 var(--ink); transform: translate(3px, 3px) rotate(7deg); }

.club-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--gradient);
  isolation: isolate;
}
.club-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,.22) 0 2px, transparent 2.5px);
  background-size: 28px 28px;
  content: "";
  opacity: .45;
  transform: rotate(-8deg) scale(1.2);
}
.club-visual-copy { position: absolute; z-index: 3; top: 34px; left: 32px; }
.club-stamp {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.club-visual-copy p {
  margin: 20px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: 74px;
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
}
.club-orbit {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 118px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 17px;
  border: 2px solid var(--ink);
  border-radius: 999px 999px 14px 999px;
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}
.club-orbit::after {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  content: "↗";
  font-family: var(--body);
  font-size: 15px;
  line-height: 1;
}
.club-orbit-energy { top: 28%; right: 17px; background: var(--pink); color: #fff; transform: rotate(5deg); }
.club-orbit-recovery { top: 43%; left: 24px; background: var(--lilac); color: var(--ink); transform: rotate(-6deg); }
.club-orbit-recovery::after { content: "↙"; }
.club-spark { position: absolute; z-index: 3; color: #fff; font-family: var(--display); font-size: 58px; line-height: 1; }
.club-spark-one { top: 34%; left: 8%; transform: rotate(18deg); }
.club-spark-two { top: 46%; right: 18%; transform: rotate(-12deg); }
.club-can {
  position: absolute;
  z-index: 2;
  aspect-ratio: 2 / 3;
  filter: drop-shadow(0 28px 24px rgba(7, 63, 53, .34));
  transition: transform .7s var(--ease);
}
.club-can img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.club-can-art { z-index: 1; }
.club-can-main { right: 7%; bottom: 0; width: 57%; transform: rotate(7deg); }
.club-can-side { bottom: 5%; left: -3%; width: 40%; transform: rotate(-12deg); }
.club-dialog:hover .club-can-main { transform: translateY(-8px) rotate(4deg); }
.club-dialog:hover .club-can-side { transform: translateY(5px) rotate(-10deg); }
.club-visual-word {
  position: absolute;
  z-index: 1;
  right: -8px;
  bottom: -16px;
  color: rgba(255,255,255,.34);
  font-family: var(--display);
  font-size: 142px;
  line-height: .8;
}

.club-form-pane {
  position: relative;
  min-width: 0;
  overflow-y: auto;
  padding: 44px 52px 34px;
  background: var(--paper);
}
.club-form-intro { padding-right: 50px; }
.club-step { color: var(--pink); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.club-form-intro h2 {
  margin: 10px 0 4px;
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
}
.club-form-intro p { max-width: 430px; margin: 16px 0 0; font-size: 15px; line-height: 1.45; }

.club-form { display: grid; gap: 20px; margin-top: 26px; }
.club-form[hidden] { display: none; }
.club-form-pane.is-complete .club-form-intro { display: none; }
.club-fields { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.club-field { display: grid; gap: 5px; }
.club-field > span, .club-form legend { font-size: 11px; font-weight: 700; text-transform: uppercase; }
.club-field small { margin-left: 4px; color: rgba(7,63,53,.58); font-size: 9px; font-weight: 400; }
.club-field input {
  width: 100%;
  height: 48px;
  padding: 4px 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  outline: 0;
  transition: border-color .25s ease, padding .25s var(--ease);
}
.club-field input::placeholder { color: rgba(7,63,53,.38); }
.club-field input:focus { padding-left: 9px; border-color: var(--pink); }
.club-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.club-form legend { margin-bottom: 11px; }
.city-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.city-options label { position: relative; min-width: 0; cursor: pointer; }
.city-options input { position: absolute; opacity: 0; pointer-events: none; }
.city-options label > span {
  display: grid;
  min-height: 64px;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff;
  text-align: center;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s var(--ease);
}
.city-options label:nth-child(1) > span { transform: rotate(-1.5deg); }
.city-options label:nth-child(2) > span { transform: rotate(1deg); }
.city-options label:nth-child(3) > span { transform: rotate(-.7deg); }
.city-options strong { font-size: 14px; text-transform: uppercase; }
.city-options small { margin-top: 2px; font-size: 9px; }
.city-options input:checked + span { background: var(--mango); box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px, -2px) rotate(0); }
.city-options input:focus-visible + span { outline: 3px solid var(--pink); outline-offset: 3px; }
.consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 0; accent-color: var(--pink); }
.consent span { font-size: 11px; line-height: 1.4; }
.club-submit {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px 11px 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.club-submit strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 20px;
  transition: transform .3s var(--ease);
}
.club-submit:hover { background: #ff5b7d; box-shadow: 2px 2px 0 var(--ink); transform: translate(4px, 4px); }
.club-submit:hover strong { transform: rotate(-8deg) translateX(2px); }
.club-submit:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 16px; margin: -5px 0 0; color: var(--ink); font-size: 11px; line-height: 1.35; }
.form-status.is-error { color: #a21b3f; font-weight: 700; }

.club-success { display: grid; min-height: 100%; align-content: center; }
.club-success[hidden] { display: none; }
.club-success > span { color: var(--pink); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.club-success > strong { margin-top: 14px; font-family: var(--display); font-size: 86px; line-height: .82; text-transform: uppercase; }
.club-success > p { max-width: 360px; margin: 24px 0; font-size: 16px; line-height: 1.45; }
.club-success > button { display: inline-flex; width: fit-content; align-items: center; gap: 20px; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 6px; background: var(--mango); box-shadow: 4px 4px 0 var(--ink); font-weight: 700; text-transform: uppercase; }

.hero {
  --hero-stage: #b6b0aa;
  --hero-video-top: 120px;
  position: relative;
  z-index: 2;
  height: max(1450px, calc(100vh + 420px));
  min-height: 1450px;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      var(--paper) 0,
      rgba(255,253,248,.94) 22px,
      rgba(255,253,248,.68) 52px,
      rgba(255,253,248,.28) 88px,
      transparent var(--hero-video-top),
      transparent calc(var(--hero-video-top) + 45vw),
      var(--paper) calc(var(--hero-video-top) + 56.25vw),
      var(--paper) 100%),
    radial-gradient(ellipse 78% 220px at 50% var(--hero-video-top),
      #c0b6ab 0,
      #b4a99f 52%,
      #9e968c 100%);
  text-align: center;
}
#services, #shop, #footer { scroll-margin-top: 124px; }
.hero-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  margin: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-size: 430px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.hero-title-top {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero-title-bottom { z-index: 5; top: 1000px; }
.hero-video-layer {
  position: absolute;
  top: var(--hero-video-top);
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  pointer-events: none;
  animation: hero-video-intro .7s ease both;
}
.hero-video-layer video,
.hero-video-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-video-background {
  z-index: 1;
  overflow: hidden;
  background: var(--hero-stage);
  box-shadow: 0 3px 0 var(--paper);
}
.hero-video-background::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(0deg,
      var(--paper) 0,
      rgba(255,253,248,.92) 5%,
      rgba(255,253,248,.42) 11%,
      transparent 20%);
  content: "";
}
.hero-video-poster { z-index: 1; }
.hero-video-layer video {
  z-index: 2;
  background: transparent;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-video-layer video.is-playing { opacity: 1; }
.hero-video-layer video.is-playing.is-loop-fading { opacity: 0; }
.hero-video-layer video::-webkit-media-controls {
  display: none !important;
}
.hero-fade {
  display: none;
}
.hero-notes {
  position: absolute;
  z-index: 5;
  top: 875px;
  left: 50%;
  display: flex;
  width: 1058.24px;
  transform: translateX(-50%);
}
.hero-promise { width: 300px; margin: 0; text-align: left; }
.hero-promise span { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.hero-promise strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-style: italic; font-weight: 400; line-height: 1.03; }
.hero-email {
  position: absolute;
  z-index: 5;
  top: 875px;
  right: calc(50% - 529.12px);
  display: inline-flex;
  min-width: 158px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 13px 12px 17px;
  border: 1px solid var(--ink);
  border-radius: 24px 24px 5px 24px;
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-3deg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
}
.hero-email::after { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); content: "\2192"; font-size: 15px; line-height: 1; }
.hero-email:hover { background: var(--magenta); box-shadow: 2px 2px 0 var(--ink); transform: rotate(0deg) translate(3px, 3px); }

@keyframes hero-video-intro {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-layer { animation: none; }
}

@media (min-width: 992px) {
  .hero {
    --hero-video-top: 0px;
    background: var(--paper);
  }
  .hero-video-background::after {
    background:
      linear-gradient(180deg,
        var(--paper) 0,
        rgba(255,253,248,.97) 2.5%,
        rgba(255,253,248,.86) 5%,
        rgba(255,253,248,.68) 7.5%,
        rgba(255,253,248,.45) 10%,
        rgba(255,253,248,.24) 12.5%,
        rgba(255,253,248,.09) 15%,
        transparent 17.5%),
      linear-gradient(0deg,
        var(--paper) 0,
        rgba(255,253,248,.92) 5%,
        rgba(255,253,248,.42) 11%,
        transparent 20%);
  }
}

.about {
  --about-side: max(2%, calc((100% - 1600px) / 2 + 32px));
  position: relative;
  z-index: 1;
  height: 150vh;
  overflow: hidden;
  background: var(--paper);
}
.about-images { position: absolute; inset: 0; padding-top: 56px; background: var(--paper); }
.about-image { position: absolute; width: 400px; overflow: hidden; border-radius: 24px; background: #e9e2d8; }
.about-image img,
.about-image video { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.03); }
.about-image video { pointer-events: none; }
.about-image-1 { top: 15%; left: var(--about-side); height: 340px; }
.about-image-2 { top: 5%; right: var(--about-side); height: 530px; }
.about-image-3 { bottom: 5%; left: var(--about-side); height: 530px; }
.about-image-4 { right: var(--about-side); bottom: 10%; height: 530px; }
.about-copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: min(38vw, 700px, calc(100% - var(--about-side) - var(--about-side) - 824px));
  min-width: 380px;
  text-align: center;
  transform: translate(-50%, calc(-40.7% + var(--about-shift, 0px)));
}
.about-copy p { margin: 0; font-family: var(--display); font-size: 100px; font-weight: 700; line-height: 1.05; letter-spacing: 0; text-transform: uppercase; }
.about-copy h2 { margin: 18px 0 0; color: var(--charcoal); font-family: var(--display); font-size: 54px; font-weight: 300; line-height: 1.08; text-transform: uppercase; }
.about-copy .about-thin { color: var(--charcoal); font-weight: 300; }
.about-copy .about-strong { color: var(--ink); font-weight: 700; }

.work-section {
  position: relative;
  z-index: 1;
  height: 260vh;
  margin-top: 14px;
  background: var(--charcoal);
}
.work-gallery {
  position: sticky;
  top: 120px;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.work-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-size: 440px;
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}
.work-word span { color: #fff; }
.work-rail {
  position: absolute;
  top: 70px;
  left: 15vw;
  display: grid;
  width: max-content;
  grid-auto-flow: column;
  grid-auto-columns: 540px;
  gap: 56px;
  will-change: transform;
}
.project-card { position: relative; width: 540px; height: 600px; overflow: hidden; border-radius: 24px; }
.project-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s ease; }
.project-can { position: absolute; z-index: 1; top: 48%; left: 50%; width: 52%; height: 82%; object-fit: contain; filter: drop-shadow(0 28px 24px rgba(7,63,53,.28)); transform: translate(-50%, -50%) rotate(var(--can-tilt, 0deg)); transition: transform .65s var(--ease), filter .65s ease; }
.project-card:hover .project-bg { filter: saturate(1.08); transform: scale(1.035); }
.project-card:hover .project-can { filter: drop-shadow(0 34px 28px rgba(7,63,53,.34)); transform: translate(-50%, calc(-50% - 8px)) rotate(0deg) scale(1.025); }
.project-card > a {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  min-width: 164px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: calc(100% - 48px);
  padding: 11px 12px 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 24px 24px 5px 24px;
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-3deg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
}
.project-card > a::after { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); content: "\2192"; font-size: 15px; line-height: 1; }
.project-card > a:hover,
.project-card > a:focus-visible { background: var(--magenta); box-shadow: 2px 2px 0 var(--ink); transform: rotate(0deg) translate(3px, 3px); }

.people-section { height: calc(100vh + 543px); overflow: hidden; background: var(--paper); padding-top: 280px; }
.section-heading-wrap { width: min(calc(100% - 146px), 1294px); margin: 0 auto; }
.section-heading-wrap > p { margin: 0; font-size: 28px; line-height: 1.2; }
.kinetic-title {
  display: flex;
  width: 100%;
  height: 160px;
  align-items: flex-end;
  margin: 0;
  overflow: hidden;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.kinetic-title { perspective: 300px; perspective-origin: 50% 100%; }
.kinetic-title > span:not(.kinetic-word) { display: inline-block; transform-origin: 50% 90%; will-change: transform, opacity; }
.client-marquee { display: flex; height: 100vh; flex-direction: column; justify-content: center; align-items: center; gap: 50px; margin-top: 70px; }
.client-row {
  --row-x: 0px;
  position: relative;
  z-index: 1;
  left: auto;
  display: grid;
  width: min(calc(100% - 48px), 1728px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  transform: translateX(var(--row-x));
}
.client-row.is-popup-active { z-index: 200; }
.client-row-1 { --row-x: -10px; grid-template-columns: .96fr 1.1fr .94fr; }
.client-row-2 { --row-x: 18px; width: min(calc(100% - 84px), 1660px); grid-template-columns: 1.08fr .92fr 1fr; }
.client-row-3 { --row-x: -14px; width: min(calc(100% - 64px), 1680px); grid-template-columns: .9fr 1.08fr 1.02fr; }
.client-link { position: relative; z-index: 50; display: flex; min-width: 0; align-items: center; justify-content: center; font-family: var(--condensed); font-size: 60px; line-height: 1.15; text-transform: uppercase; }
.client-link:hover, .client-link:focus-visible { z-index: 150; }
.client-row-1 .client-link:nth-child(1) { justify-content: flex-start; transform: translateY(18px); }
.client-row-1 .client-link:nth-child(2) { transform: translateY(-16px); }
.client-row-1 .client-link:nth-child(3) { justify-content: flex-end; transform: translateY(5px); }
.client-row-2 .client-link:nth-child(1) { justify-content: flex-start; transform: translateY(-14px); }
.client-row-2 .client-link:nth-child(2) { justify-content: flex-end; transform: translateY(20px); }
.client-row-2 .client-link:nth-child(3) { transform: translateY(-18px); }
.client-row-3 .client-link:nth-child(1) { transform: translateY(17px); }
.client-row-3 .client-link:nth-child(2) { justify-content: flex-start; transform: translateY(-12px); }
.client-row-3 .client-link:nth-child(3) { justify-content: flex-end; transform: translateY(11px); }
.client-row-1 .client-link:nth-child(1) .client-name,
.client-row-2 .client-link:nth-child(3) .client-name { font-size: 1.08em; }
.client-row-1 .client-link:nth-child(2) .client-name,
.client-row-3 .client-link:nth-child(1) .client-name { font-size: .94em; }
.client-row-2 .client-link:nth-child(1) .client-name,
.client-row-3 .client-link:nth-child(2) .client-name { font-size: 1.12em; }
.client-row-1 .client-link:nth-child(2) .client-logo-holder,
.client-row-3 .client-link:nth-child(1) .client-logo-holder { transform: scale(1.12); }
.client-row-1 .client-link:nth-child(3) .client-logo-holder,
.client-row-2 .client-link:nth-child(2) .client-logo-holder { transform: scale(.9); }
.client-row-2 .client-link:nth-child(1) .client-arrow,
.client-row-3 .client-link:nth-child(3) .client-arrow { transform: scale(1.16); }
.client-row-1 .client-link:nth-child(2) .client-arrow,
.client-row-3 .client-link:nth-child(1) .client-arrow { transform: scale(.84); }
.client-logo-holder { position: relative; display: block; width: 88px; min-width: 88px; height: 88px; overflow: visible; border-radius: 50%; background: #fff; }
.client-logo { position: absolute; inset: 4px; display: block; width: calc(100% - 8px); height: calc(100% - 8px); object-fit: contain; }
.client-name-arrow { display: flex; min-width: 0; align-items: center; justify-content: center; }
.client-name { margin: 0 16px; white-space: nowrap; }
.client-arrow { width: 48px; min-width: 48px; height: 48px; }
.client-popup {
  position: absolute;
  z-index: 100;
  right: 0;
  bottom: calc(100% + 14px);
  left: 0;
  display: none;
  width: min(400px, calc(100vw - 24px));
  min-width: 0;
  min-height: 0;
  max-height: min(330px, calc(100vh - 24px));
  overflow: auto;
  padding: 22px 24px 26px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink), 0 16px 40px rgb(0 0 0 / 12%);
  text-transform: none;
  transform: translate(var(--popup-shift-x, 0px), var(--popup-shift-y, 0px));
}
.client-popup.is-below { top: calc(100% + 14px); bottom: auto; }
.client-popup-first { right: auto; left: 100%; }
.client-popup-3 { right: 0; left: auto; }
.client-popup-6 { right: 100%; left: auto; }
.client-popup-7 { left: 100%; }
.client-popup-9 { right: 20%; left: auto; }
.client-popup-head { display: flex; align-items: center; gap: 14px; }
.client-popup-head > img { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 8px; object-fit: contain; }
.client-popup-head > span { display: flex; flex-direction: column; align-items: flex-start; }
.client-popup-head strong { font-size: 28px; font-weight: 400; line-height: 1; }
.client-popup-head small { margin-top: 3px; font-family: var(--body); font-size: 12px; font-weight: 700; line-height: 1.3; letter-spacing: 0; text-transform: uppercase; }
.client-popup-copy { display: block; margin-top: 18px; font-family: var(--body); font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: 0; }

@media (min-width: 992px) {
  .client-link:hover .client-popup,
  .client-link:focus-visible .client-popup { display: block; }
}

@media (min-width: 1600px) {
  .client-link { font-size: 64px; }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .client-link { font-size: 48px; }
  .client-logo-holder { width: 76px; min-width: 76px; height: 76px; }
  .client-name { margin: 0 10px; }
  .client-arrow { width: 36px; min-width: 36px; height: 36px; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .client-marquee { margin-top: 68px; }
  .client-link { min-height: 88px; }
}

.services-heading { height: auto; overflow: hidden; background: var(--paper); padding: 70px 0; }
.services-heading .kinetic-title { align-items: stretch; overflow: visible; }
.services-heading .section-heading-wrap > p { width: 80%; }
.kinetic-word { display: flex; height: 100%; align-items: flex-end; overflow: hidden; }
.kinetic-word + .kinetic-word { margin-left: .18em; }
.kinetic-letter-holder { display: flex; height: 100%; align-items: flex-end; overflow: hidden; perspective: 300px; perspective-origin: 50% 100%; }
.kinetic-letter { display: inline-block; transform-origin: 50% 90%; will-change: transform, opacity; }
.services-cards { position: relative; height: 860px; overflow: hidden; background: var(--charcoal); }
.service-stack { width: min(calc(100% - 146px), 1294px); margin: 161px auto 0; display: flex; flex-direction: column; gap: 60px; will-change: transform; }
.service-card { position: relative; display: grid; height: 300px; min-height: 300px; grid-template-columns: .25fr 1fr .25fr; align-items: center; gap: 16px; overflow: hidden; padding-left: 63px; border-radius: 32px; background: #fff; }
.service-number { position: relative; bottom: -75px; align-self: center; opacity: 0; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--display); font-size: 360px; font-weight: 700; line-height: 1; }
.service-number.is-visible { animation: service-number-reveal 1s cubic-bezier(.25, 1, .5, 1) both; }
@keyframes service-number-reveal {
  from { opacity: 0; transform: translate3d(0, 100px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.service-copy { width: min(100%, 520px); justify-self: center; }
.service-copy h3 { margin: 0; opacity: 0; font-family: var(--condensed); font-size: 66px; font-weight: 400; line-height: 1.08; transform: translate3d(0, 25px, 0); }
.service-copy h3.is-visible { animation: service-heading-reveal 1s ease both; }
@keyframes service-heading-reveal {
  from { opacity: 0; transform: translate3d(0, 25px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.service-copy p { margin: 0; font-size: 24px; line-height: 1.18; }
.service-copy p + p { margin-top: 14px; }
.service-tag { position: absolute; top: 50%; right: 34px; font-size: 28px; transform: translateY(-50%) rotate(-90deg); }
.service-card-reverse { grid-template-columns: 1.25fr .25fr .25fr; }
.service-card-reverse .service-copy { grid-column: 1; justify-self: start; }
.service-card-reverse .service-number { grid-column: 2; }

.shop { position: relative; z-index: 1; min-height: 0; overflow: hidden; background: var(--paper); }
.shop-container { width: min(calc(100% - 90px), 1350px); margin: 0 auto; padding: 70px 28px 210px; }
.shop-head { text-align: center; }
.shop-head .kinetic-title { justify-content: center; }
.shop-head > p { margin: 0; font-size: 28px; line-height: 1.2; }
.product-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 82px 30px; margin-top: 94px; }
.product-card { position: relative; color: #181818; will-change: transform, opacity; }
.product-image { --tilt-x: 0deg; --tilt-y: 0deg; --glow-x: 50%; --glow-y: 30%; --can-turn-ease: cubic-bezier(.42, 0, .58, 1); position: relative; display: block; width: 100%; padding: 112% 0 0; overflow: hidden; border-radius: 8px; background: #f7f7f7; box-shadow: 0 18px 35px rgba(16,35,31,.12); text-align: left; perspective: 1400px; transition: box-shadow .55s var(--can-turn-ease), transform .55s var(--can-turn-ease); }
.product-image::before { position: absolute; z-index: 0; bottom: 7%; left: 50%; width: 46%; height: 6%; border-radius: 50%; background: rgba(16,35,31,.28); content: ""; filter: blur(13px); opacity: .55; pointer-events: none; transform: translateX(-50%) scale(.9); transition: opacity .55s var(--can-turn-ease), transform .55s var(--can-turn-ease); }
.product-image::after { position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.45), rgba(255,255,255,0) 34%); content: ""; opacity: 0; pointer-events: none; transition: opacity .5s var(--can-turn-ease); }
.product-can-stage { position: absolute; z-index: 1; inset: 0; display: block; transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0); transform-style: preserve-3d; transition: transform .45s var(--can-turn-ease); }
.product-grid-3d-canvas { position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.product-grid.is-3d-ready .product-grid-3d-canvas { opacity: 1; }
.product-image.is-3d-ready .product-can-stage { opacity: 0; transition: opacity .3s ease; }
.product-image.is-3d-ready.is-turning .product-flip-inner::before { animation: none; }
.product-flip-inner { position: absolute; inset: 0; display: block; transform: translateZ(18px) rotateY(0); transform-style: preserve-3d; transition: transform 1.1s var(--can-turn-ease); }
.product-flip-inner::before { position: absolute; z-index: 1; top: 14%; bottom: 14%; left: 50%; width: 9%; border-radius: 48% / 3%; background: linear-gradient(180deg, #c7c9c7 0 2.5%, transparent 2.5% 97%, #aeb1af 97% 100%), var(--can-side); box-shadow: inset 7px 0 12px rgba(0,0,0,.22), inset -6px 0 11px rgba(255,255,255,.34); content: ""; opacity: 0; transform: translateX(-50%) rotateY(90deg); }
.product-flip.is-turning .product-flip-inner::before { animation: can-side-reveal 1.1s linear; }
.product-face { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; transform-style: preserve-3d; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.product-face img { position: relative; z-index: 1; width: 86%; height: 86%; object-fit: contain; filter: drop-shadow(0 24px 18px rgba(16,35,31,.2)); transform: translateZ(28px) scale(.96); transition: filter .55s var(--can-turn-ease), transform .55s var(--can-turn-ease); }
.product-back { transform: rotateY(180deg); }
.product-flip.is-flipped .product-flip-inner { transform: translateZ(18px) rotateY(180deg); }
.product-tone-coral { --can-side: linear-gradient(90deg, #ca7185, #f7d5dd 48%, #b65a70); background: #f7c7d0; }
.product-tone-aqua { --can-side: linear-gradient(90deg, #66aaa9, #d7f6f2 48%, #4f9696); background: var(--aqua); }
.product-tone-rose { --can-side: linear-gradient(90deg, #c96974, #f8d7dc 48%, #ae4e5c); background: #f4c5cb; }
.product-tone-lilac { --can-side: linear-gradient(90deg, #8c76b9, #e3d8f6 48%, #71599e); background: var(--lilac); }
.product-tone-mango { --can-side: linear-gradient(90deg, #d6a844, #fff0b9 48%, #bd8b2b); background: var(--mango); }
.product-tone-lime { --can-side: linear-gradient(90deg, #91aa3f, #eef7b8 48%, #718b2f); background: #dceba7; }
@media (hover: hover) and (pointer: fine) {
  .product-image:hover, .product-image:focus-visible { box-shadow: 0 30px 56px rgba(16,35,31,.2); transform: translateY(-3px); }
  .product-image:hover::before, .product-image:focus-visible::before { opacity: .7; transform: translateX(-50%) scale(1.03); }
  .product-image:hover::after, .product-image:focus-visible::after { opacity: .48; }
  .product-image:hover .product-can-stage, .product-image:focus-visible .product-can-stage { transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-3px); }
  .product-image:hover .product-face img, .product-image:focus-visible .product-face img { filter: drop-shadow(0 30px 21px rgba(16,35,31,.25)); transform: translateZ(36px) scale(.97); }
  .product-flip:hover .product-flip-inner,
  .product-flip:focus-visible .product-flip-inner { transform: translateZ(18px) rotateY(180deg); }
}
.add-button { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; width: 55px; height: 43px; place-items: center; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.add-button img { width: 25px; height: 25px; }
.add-button:hover img { transform: translateX(3px); }
.add-button img { filter: none; transition: transform .25s ease; }
.product-copy { margin-top: 38px; }
.product-type { display: block; margin: 0; padding: 0; background: transparent; color: var(--pink); font-size: 16px; line-height: 1.3; }
.product-line { display: flex; align-items: flex-start; justify-content: space-between; margin: 18px 0; }
.product-line h3, .product-line strong { margin: 0; font-family: var(--condensed); font-size: 36px; font-weight: 400; line-height: 1; }
.product-line h3 { max-width: 84%; }
.product-summary { margin: 0; font-size: 15px; line-height: 1.3; }

@keyframes can-side-reveal {
  0%, 24%, 76%, 100% { opacity: 0; }
  42%, 58% { opacity: .82; }
}

.footer { --footer-stage-height: clamp(1220px, 158vh, 1500px); position: relative; height: calc(var(--footer-stage-height) + 194px); min-height: 0; overflow: hidden; background: var(--charcoal); color: #fff; }
.footer-visual { position: absolute; top: 0; left: 0; display: flex; width: 100%; height: var(--footer-stage-height); align-items: center; justify-content: center; overflow: hidden; border-radius: 0 0 100px 100px; background: var(--gradient); }
.footer-big-text { position: absolute; z-index: 4; top: 58px; width: 92%; color: #fff; font-family: var(--display); font-size: clamp(92px, 8.5vw, 140px); font-weight: 700; line-height: .82; text-align: center; text-transform: uppercase; opacity: var(--footer-content-opacity, 0); transform: translateY(var(--footer-content-shift, 25px)); }
.footer-big-text span { display: block; }
.footer-stores { position: absolute; z-index: 2; top: 26%; left: 0; width: 100%; height: 360px; opacity: var(--footer-content-opacity, 0); transform: translateY(var(--footer-content-shift, 25px)); }
.footer-store { position: absolute; width: clamp(270px, 27vw, 420px); margin: 0; padding: 9px 9px 48px; border: 2px solid var(--ink); border-radius: 7px; background: var(--paper); color: var(--ink); box-shadow: 12px 14px 0 rgba(7,63,53,.76), 0 20px 40px rgba(16,35,31,.18); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.footer-store::before { position: absolute; z-index: 3; top: -9px; left: 50%; width: 36px; height: 18px; border: 1px solid rgba(7,63,53,.25); background: rgba(255,246,218,.9); content: ""; transform: translateX(-50%) rotate(-2deg); }
.footer-store-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 3px; background: #f5dca5; }
.footer-store-photo img { width: 100%; height: 100%; object-fit: cover; }
.footer-store figcaption { position: absolute; right: 14px; bottom: 9px; left: 14px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; text-transform: uppercase; }
.footer-store figcaption strong { font-family: var(--display); font-size: 28px; line-height: 1; }
.footer-store figcaption span { color: var(--pink); font-size: 10px; font-weight: 700; }
.footer-store-nice { top: 26px; left: 3%; transform: rotate(-3.5deg); }
.footer-store-paris { top: 0; left: 50%; transform: translateX(-50%) rotate(1.5deg); }
.footer-store-marseille { top: 22px; right: 3%; transform: rotate(3.2deg); }
.footer-store:hover { z-index: 4; box-shadow: 8px 10px 0 rgba(7,63,53,.8), 0 24px 52px rgba(16,35,31,.24); }
.footer-store-nice:hover { transform: rotate(-1deg) translateY(-8px); }
.footer-store-paris:hover { transform: translateX(-50%) rotate(0deg) translateY(-8px); }
.footer-store-marseille:hover { transform: rotate(1deg) translateY(-8px); }
.footer-character { position: absolute; z-index: 3; bottom: 0; left: 50%; width: 760px; height: 70vh; max-width: none; opacity: var(--footer-content-opacity, 0); pointer-events: none; transform: translate(-50%, var(--footer-content-shift, 25px)); }
.footer-person,
.footer-fruit { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: contain; object-position: 50% 100%; }
.footer-person { z-index: 1; }
.footer-character-urban { left: 42%; width: 820px; height: 74vh; }
.footer-character-urban .footer-person { transform: scale(1.04); transform-origin: 50% 100%; }
.footer-character-urban + .footer-cta { top: 76%; left: 73%; width: 430px; font-size: 72px; }
.footer-fruit {
  z-index: 2;
  animation: footer-fruit-drift var(--fruit-duration, 9s) ease-in-out var(--fruit-delay, 0s) infinite;
  transform-origin: var(--fruit-origin);
  will-change: transform;
}
.footer-fruit-raspberry-upper-left { --fruit-origin: 13.8% 18.8%; --fruit-duration: 8.4s; --fruit-delay: -2.7s; --fruit-x: 6px; --fruit-y: -8px; --fruit-rotate: 4deg; }
.footer-fruit-lemon-upper-right { --fruit-origin: 84.3% 26.1%; --fruit-duration: 10.6s; --fruit-delay: -6.1s; --fruit-x: -7px; --fruit-y: -10px; --fruit-rotate: -3deg; }
.footer-fruit-lemon-left { --fruit-origin: 10% 43.5%; --fruit-duration: 9.5s; --fruit-delay: -4.3s; --fruit-x: 8px; --fruit-y: -7px; --fruit-rotate: 3deg; }
.footer-fruit-raspberry-right { --fruit-origin: 92.7% 56%; --fruit-duration: 7.8s; --fruit-delay: -1.2s; --fruit-x: -6px; --fruit-y: -8px; --fruit-rotate: -5deg; }
.footer-fruit-raspberry-lower-left { --fruit-origin: 11.8% 76.8%; --fruit-duration: 9.9s; --fruit-delay: -7.4s; --fruit-x: 7px; --fruit-y: -9px; --fruit-rotate: 5deg; }
.footer-fruit-lemon-lower-right { --fruit-origin: 93.3% 78.7%; --fruit-duration: 11.2s; --fruit-delay: -3.8s; --fruit-x: -8px; --fruit-y: -7px; --fruit-rotate: -3deg; }
@keyframes footer-fruit-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(var(--fruit-x), var(--fruit-y), 0) rotate(var(--fruit-rotate)) scale(1.015); }
}
.footer-cta { position: absolute; z-index: 5; top: 84.1%; left: 50%; display: inline-flex; width: 560px; align-items: center; justify-content: space-between; padding: 35px 0; background: transparent; color: #fff; font-family: var(--display); font-size: 80px; font-weight: 700; line-height: 1; white-space: nowrap; opacity: var(--footer-content-opacity, 0); transform: translate(-50%, calc(-50% + var(--footer-content-shift, 25px))); transition: transform .35s, color .35s; }
.footer-cta:hover { transform: translate(-50%, -50%) scale(1.05); }
.footer-cta img { width: 48px; margin-left: 20px; }
.footer-links { position: absolute; right: max(45px, calc((100vw - 1350px) / 2)); bottom: 104px; left: max(45px, calc((100vw - 1350px) / 2)); display: grid; height: 90px; grid-template-columns: repeat(7, max-content); align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; }
.footer-links a { position: relative; font-size: 15px; font-weight: 400; line-height: 1.2; white-space: nowrap; transition: color .25s ease; }
.footer-links a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.footer-links a:hover { color: #ff6e8d; }
.footer-links a:hover::after, .footer-links a:focus-visible::after { transform: scaleX(1); }
.footer-bottom { position: absolute; right: max(45px, calc((100vw - 1350px) / 2)); bottom: 0; left: max(45px, calc((100vw - 1350px) / 2)); display: flex; height: 104px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.35); padding: 24px 0; }
.footer-copy { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-copy { display: grid; gap: 5px; }
.footer-credit a { color: #fff; font-weight: 700; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: #ff6e8d; }
.footer-socials { display: flex; align-items: center; gap: 15px; padding: 6px 5px 8px; }
.footer-social {
  --social-bg: #f43667;
  --social-color: #fff9f1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid #fff9f1;
  border-radius: 50%;
  background: var(--social-bg);
  box-shadow: 6px 6px 0 #004c3f, 0 0 22px rgba(255,255,255,.22);
  color: var(--social-color);
  transform: rotate(-7deg);
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.footer-social-linkedin { --social-bg: #ffd34e; --social-color: #004c3f; border-radius: 8px; transform: rotate(6deg); }
.footer-social:hover, .footer-social:focus-visible { box-shadow: 3px 3px 0 #004c3f, 0 0 30px rgba(255,255,255,.42); transform: translateY(-5px) rotate(0deg) scale(1.06); }
.footer-social:focus-visible { outline: 3px solid #fff; outline-offset: 5px; }
.footer-social svg { width: 24px; height: 24px; }

.buy-template { position: fixed; z-index: 20; right: 30px; bottom: 30px; display: inline-flex; min-height: 38px; align-items: center; gap: 4px; padding: 8px 12px; border: 1px solid rgba(0,0,0,.2); border-radius: 6px; background: #fff; color: #000; font-size: 14px; font-weight: 500; opacity: .8; animation: template-panel-in 1s ease-out 2.1s both; transition: opacity .4s, box-shadow .475s; }
.buy-template:hover { opacity: 1; box-shadow: 0 6px 20px rgba(0,0,0,.23); }
.buy-template span { display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 3px; background: #4d8dff; color: #fff; font-weight: 700; }

@keyframes template-panel-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: .8; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1440px) {
  .work-section { height: 363vh; }
  .shop { height: auto; min-height: 0; }
}

@media (min-width: 1600px) {
  .hero-title { font-size: clamp(430px, 25vw, 520px); }
}

@media (min-width: 1800px) {
  .about { height: 135vh; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .shop { min-height: 0; }
  .shop-container { padding-bottom: 206px; }
}

@media (min-width: 992px) {
  .people-section .kinetic-title span:first-child { color: #666; transform: translateY(39px) scaleY(.7); transform-origin: top; }
}

@media (max-width: 1279px) and (min-width: 992px) {
  .site-nav { width: 100%; }
  .hero-notes { width: calc(100% - 56px); }
  .hero-email { right: 28px; }
  .hero { height: max(1180px, calc(100vh + 300px)); min-height: 1180px; }
  .hero-title-bottom { top: 875px; }
  .hero-video-layer { top: var(--hero-video-top); }
  .hero-notes { top: 750px; }
  .hero-email { top: 750px; }
  .shop-container { width: calc(100% - 56px); }
  .about-image { width: 300px; }
  .about-image-1 { left: 2%; height: 260px; }
  .about-image-2 { right: 2%; height: 420px; }
  .about-image-3 { left: 2%; height: 420px; }
  .about-image-4 { right: 2%; bottom: 6%; height: 420px; }
  .about-copy { width: 380px; }
  .about-copy p { font-size: 76px; }
  .about-copy h2 { font-size: 42px; line-height: 1.08; }
  .people-section { height: calc(100vh + 544px); }
  .client-row { width: calc(100% - 40px); gap: 16px; }
  .client-row-1 { width: calc(100% - 32px); }
  .client-row-2 { width: calc(100% - 64px); }
  .client-row-3 { width: calc(100% - 48px); }
  .client-link { font-size: 38px; }
  .client-logo-holder { width: 68px; min-width: 68px; height: 68px; }
  .client-name { margin: 0 10px; }
  .client-arrow { width: 34px; min-width: 34px; height: 34px; }
  .client-popup { width: min(350px, calc(100vw - 24px)); padding: 18px 20px 22px; border-radius: 18px; }
  .client-popup-head > img { width: 48px; height: 48px; flex-basis: 48px; }
  .client-popup-head strong { font-size: 24px; }
  .client-popup-copy { margin-top: 14px; font-size: 16px; line-height: 1.38; }
  .shop { min-height: 0; }
}

@media (max-width: 991px) {
  .hero { --hero-video-top: 110px; }
  .hero-video-background {
    background: var(--hero-stage);
  }
  .hero-video-layer video,
  .hero-video-layer img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.3) 7px, rgba(0,0,0,.68) 16px, rgba(0,0,0,.92) 26px, #000 36px);
    mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.3) 7px, rgba(0,0,0,.68) 16px, rgba(0,0,0,.92) 26px, #000 36px);
  }
  .site-nav { width: 100%; }
  .brand { width: 70px; height: 45px; background: #fff; box-shadow: var(--glow); }
  .brand-full { display: block; font-size: 21px; }
  .brand-eye { display: none; }
  .nav-actions { width: auto; gap: 10px; padding-left: 0; }
  .nav-pill { width: 86px; flex-basis: 86px; background: #fff; box-shadow: var(--glow); font-size: 18px; line-height: 21.6px; }
  .nav-actions > a.nav-pill, .cart-toggle { width: 86px; }
  .cart-toggle img { width: 20px; height: 20px; }
  .club-dialog { width: calc(100vw - 40px); grid-template-columns: .74fr 1.26fr; }
  .club-visual-copy p { font-size: 60px; }
  .club-form-pane { padding-right: 36px; padding-left: 36px; }
  .club-form-intro h2 { font-size: 64px; }
  .hero { height: max(900px, 100vh); min-height: 900px; }
  .hero-title { font-size: 280px; }
  .hero-title-bottom { top: calc(245px + 50vw); bottom: auto; }
  .hero-video-layer { top: 110px; width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .hero-video-layer video, .hero-video-layer img { object-position: 50% 50%; }
  .hero-notes { top: calc(110px + 50vw); bottom: auto; width: min(689.1px, 100%); flex-flow: column; align-items: center; }
  .hero-promise { width: 320px; max-width: calc(100% - 40px); text-align: center; }
  .hero-email { top: calc(154px + 50vw); right: 50%; bottom: auto; transform: translateX(50%) rotate(-3deg); }
  .about-image { width: 230px; }
  .about-image-1 { left: 2%; }
  .about-image-2 { right: 2%; }
  .about-image-3 { left: 6%; }
  .about-image-4 { right: 4%; }
  .about-copy { width: 72%; padding: 24px; background: rgba(255,253,248,.96); }
  .about-copy p { font-size: 82px; }
  .about-copy h2 { font-size: 52px; line-height: 1.2; }
  .work-rail { grid-auto-columns: 380px; }
  .project-card { width: 380px; height: 400px; }
  .people-section { height: auto; min-height: calc(60vh + 251px); padding-top: 280px; padding-bottom: 80px; }
  .kinetic-title { height: 104px; font-size: 104px; }
  .section-heading-wrap > p { font-size: 20px; }
  .client-marquee { height: auto; }
  .client-row { width: calc(100% - 32px); gap: 10px; }
  .client-row-1 { width: calc(100% - 24px); }
  .client-row-2 { width: calc(100% - 48px); }
  .client-row-3 { width: calc(100% - 36px); }
  .client-link { width: auto; margin: 0; font-size: 28px; transition: transform .35s, color .35s; }
  .client-logo-holder { width: 54px; min-width: 54px; height: 54px; }
  .client-name { margin: 0 6px; font-size: inherit; }
  .client-arrow { width: 24px; min-width: 24px; height: 24px; }
  .client-popup { min-width: 0; min-height: 0; padding-bottom: 22px; }
  .client-popup-head > img { width: 40px; height: 40px; }
  .client-popup-head strong { font-size: 24px; }
  .client-popup-copy { font-size: 16px; }
  .services-heading { height: auto; }
  .service-stack { width: calc(100% - 56px); }
  .service-card { padding-left: 63px; }
  .service-copy { width: auto; }
  .service-copy h3 { font-size: 60px; }
  .service-copy p { font-size: 22px; }
  .service-number { font-size: 280px; }
  #services, #shop, #footer { scroll-margin-top: 74px; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .shop { min-height: 0; }
  .shop-container { width: 100%; padding-right: 28px; padding-bottom: 70px; padding-left: 28px; }
  .product-grid { gap: 80px 24px; margin-top: 72px; }
  .product-image { padding-top: 112%; }
  .product-copy { margin-top: 0; padding-top: 36px; }
  .product-line { margin-top: 19px; margin-bottom: 11px; }
  .footer { --footer-stage-height: clamp(1080px, 147vh, 1300px); height: calc(var(--footer-stage-height) + 234px); min-height: 0; }
  .footer-visual { height: var(--footer-stage-height); }
  .footer-big-text { top: 64px; font-size: 80px; }
  .footer-stores { top: 26%; height: 300px; }
  .footer-store { width: 30vw; min-width: 230px; padding: 7px 7px 40px; }
  .footer-store figcaption strong { font-size: 23px; }
  .footer-store-nice { left: 2%; }
  .footer-store-marseille { right: 2%; }
  .footer-character { bottom: -55px; width: 760px; }
  .footer-cta { top: 93.75%; width: 90%; padding: 35px 0; justify-content: center; font-size: 80px; }
  .footer-character-urban { bottom: -35px; left: 50%; width: 760px; height: 72vh; }
  .footer-character-urban .footer-person { transform: scale(1.04); }
  .footer-character-urban + .footer-cta { top: 88%; left: 50%; width: 80%; font-size: 52px; }
  .footer-links { right: 28px; bottom: 104px; left: 28px; height: 130px; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 22px 0; }
  .footer-links a { text-align: center; white-space: normal; }
  .footer-bottom { right: 28px; left: 28px; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero { height: max(1050px, 100vh); min-height: 1050px; }
  .hero-email { top: calc(190px + 50vw); }
  .hero-title-bottom { top: calc(285px + 50vw); }
  .services-heading .section-heading-wrap { width: calc(100% - 56px); }
  .services-heading .kinetic-title { height: 13vw; font-size: 13vw; }
  .services-heading .section-heading-wrap > p { font-size: 22px; }
}

@media (max-width: 767px) {
  .hero { --hero-video-top: 96px; }
  .cart-panel { padding: 0; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .club-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .club-close { position: fixed; top: 12px; right: 12px; width: 42px; height: 42px; font-size: 29px; }
  .club-visual { min-height: 180px; }
  .club-visual::before { background-size: 22px 22px; }
  .club-visual-copy { top: 20px; left: 18px; }
  .club-visual-copy p { margin-top: 12px; font-size: 50px; }
  .club-orbit { width: 74px; height: 74px; font-size: 8px; }
  .club-orbit-energy { display: none; }
  .club-orbit-recovery { display: none; }
  .club-spark { font-size: 38px; }
  .club-spark-one { top: 52%; left: 44%; }
  .club-spark-two { display: none; }
  .club-can-main { right: 3%; bottom: -36%; width: 31%; }
  .club-can-side { right: 24%; bottom: -27%; left: auto; width: 24%; }
  .club-visual-word { right: auto; bottom: -10px; left: 16px; font-size: 90px; }
  .club-form-pane { overflow: visible; padding: 28px 18px 36px; }
  .club-form-intro { padding-right: 28px; }
  .club-form-intro h2 { font-size: 58px; }
  .club-form-intro p { font-size: 14px; }
  .club-form { margin-top: 22px; }
  .club-success { min-height: calc(100dvh - 236px); }
  .club-success > strong { font-size: 74px; }
  .site-nav { width: 100%; }
  .hero-title { font-size: 200px; }
  .hero-title-bottom { top: 500px; bottom: auto; }
  .hero-video-layer { top: 96px; width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .hero-video-layer video, .hero-video-layer img { object-position: 50% 50%; }
  .hero-video-background::after {
    background:
      linear-gradient(0deg, var(--paper) 0, rgba(255,253,248,.95) 7%, rgba(255,253,248,.4) 17%, transparent 30%);
  }
  .hero-notes { top: 340px; bottom: auto; left: 0; display: flex; width: 100%; justify-content: center; padding: 0 14px; transform: none; }
  .hero-promise { width: 310px; max-width: 90%; }
  .hero-promise span { font-size: 11px; }
  .hero-promise strong { font-size: 25px; }
  .hero-email { top: 420px; right: 50%; bottom: auto; min-width: 150px; min-height: 45px; font-size: 12px; transform: translateX(50%) rotate(-3deg); }
  .hero-email:hover { transform: translate(calc(50% + 3px), 3px) rotate(0deg); }
  .about-copy { top: 50%; width: 100%; padding: 24px 14px; background: var(--paper); transform: translate(-50%, -50%); }
  .about-copy p { font-size: 50px; }
  .about-copy h2 { margin-top: 12px; font-size: 32px; line-height: 1.12; }
  .work-gallery { height: 65vh; }
  .work-word { align-items: flex-start; justify-content: flex-start; padding-top: 140px; font-size: 115px; }
  .work-rail { top: 70px; left: calc(15vw - 14px); grid-auto-columns: 300px; gap: 10vw; }
  .project-card { width: 300px; height: 300px; }
  .project-card > a { bottom: 16px; left: 16px; min-width: 154px; min-height: 44px; max-width: calc(100% - 32px); padding: 9px 10px 9px 14px; font-size: 11px; }
  .project-card > a::after { width: 23px; height: 23px; flex-basis: 23px; font-size: 13px; }
  .section-heading-wrap { width: calc(100% - 28px); }
  .people-section { height: auto; min-height: calc(60vh + 310px); padding-top: 140px; padding-bottom: 64px; }
  .kinetic-title { height: 20vw; font-size: 20vw; }
  .people-section .kinetic-title { font-size: 17.5vw; }
  .section-heading-wrap > p { font-size: 18px; }
  .client-marquee { height: auto; gap: 26px; margin-top: 48px; }
  .client-row { width: calc(100% - 24px); gap: 8px; }
  .client-row-1 { --row-x: -3px; width: calc(100% - 18px); grid-template-columns: .92fr 1.1fr .98fr; }
  .client-row-2 { --row-x: 7px; width: calc(100% - 34px); grid-template-columns: 1.06fr .9fr 1.04fr; }
  .client-row-3 { --row-x: -5px; width: calc(100% - 26px); grid-template-columns: .94fr 1.1fr .96fr; }
  .client-link { flex-direction: column; gap: 7px; font-size: 24px; line-height: 1; text-align: center; }
  .client-row-1 .client-link:nth-child(1),
  .client-row-2 .client-link:nth-child(2),
  .client-row-3 .client-link:nth-child(3) { transform: translateY(6px); }
  .client-row-1 .client-link:nth-child(2),
  .client-row-2 .client-link:nth-child(3),
  .client-row-3 .client-link:nth-child(2) { transform: translateY(-5px); }
  .client-row-1 .client-link:nth-child(3),
  .client-row-2 .client-link:nth-child(1),
  .client-row-3 .client-link:nth-child(1) { transform: translateY(1px); }
  .client-logo-holder { width: 56px; min-width: 56px; height: 56px; }
  .client-name-arrow { width: 100%; min-height: 48px; align-items: center; }
  .client-name { max-width: calc(100% - 22px); margin: 0 3px; white-space: normal; }
  .client-arrow { width: 18px; min-width: 18px; height: 18px; }
  .client-row-2 .client-link:last-child .client-arrow { width: 18px; height: 18px; }
  .services-heading { height: auto; padding: 70px 0; }
  .services-heading .section-heading-wrap > p { width: 100%; }
  .service-card { padding-left: 21px; }
  .service-stack { width: calc(100% - 28px); gap: 60px; }
  .service-number { bottom: -100px; font-size: 260px; }
  .service-copy h3 { font-size: 44px; line-height: 1.3; }
  .service-copy p { font-size: 20px; }
  .service-tag { right: 0; font-size: 22px; }
  .shop-container { padding-right: 14px; padding-left: 14px; padding-bottom: 70px; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 64px 20px; margin-top: 44px; }
  .product-line { flex-direction: column; gap: 5px; }
  .product-line h3 { max-width: 100%; font-size: 30px; }
  .product-line strong { font-size: 30px; }
  .product-copy { margin-top: 0; padding: 21px 14px 31px 0; }
  .product-line { margin-top: 18px; margin-bottom: 17px; }
  .footer { --footer-stage-height: clamp(850px, 115vh, 980px); }
  .footer-big-text { display: none; }
  .footer-stores { top: 72px; height: 270px; }
  .footer-store { width: 44vw; min-width: 0; padding: 5px 5px 31px; box-shadow: 6px 7px 0 rgba(7,63,53,.72), 0 12px 26px rgba(16,35,31,.16); }
  .footer-store::before { top: -6px; width: 24px; height: 12px; }
  .footer-store figcaption { right: 8px; bottom: 6px; left: 8px; }
  .footer-store figcaption strong { font-size: 19px; }
  .footer-store figcaption span { display: none; }
  .footer-store-nice { top: 32px; left: 2%; transform: rotate(-4deg); }
  .footer-store-paris { top: 0; left: 50%; transform: translateX(-50%) rotate(1.5deg); }
  .footer-store-marseille { top: 34px; right: 2%; transform: rotate(4deg); }
  .footer-cta { width: 80%; justify-content: center; font-size: 32px; text-align: center; white-space: nowrap; }
  .footer-character-urban { bottom: 0; width: 100%; height: 66vh; }
  .footer-character-urban .footer-person { transform: scale(1.02); }
  .footer-character-urban + .footer-cta { top: 88%; width: 88%; font-size: 32px; }
  .footer-cta img { width: 25px; margin-left: 20px; }
}

@media (max-width: 479px) {
  .hero { --hero-video-top: 88px; }
  .site-nav { top: 0; padding: 0 14px; }
  #services, #shop, #footer { scroll-margin-top: 56px; }
  .brand { width: 64px; height: 45px; background: transparent; box-shadow: none; }
  .nav-actions { gap: 8px; }
  .nav-pill { width: auto; min-width: 68px; height: 45px; flex-basis: auto; padding: 10px 8px; background: transparent; box-shadow: none; font-size: 18px; line-height: 22px; }
  .nav-actions > a.nav-pill, .cart-toggle { width: auto; }
  .site-nav.is-over-dark .brand, .site-nav.is-over-dark .nav-pill { background: #fff; box-shadow: var(--glow); }
  .site-nav.is-over-dark .brand { height: 45px; }
  .cart-toggle { min-width: 60px; padding: 10px 8px; gap: 2px; }
  .cart-toggle img { width: 20px; height: 20px; }
  .club-dialog { grid-template-rows: 156px auto; }
  .club-visual { min-height: 156px; }
  .club-stamp { padding: 5px 7px; font-size: 9px; }
  .club-visual-copy { top: 16px; left: 15px; }
  .club-visual-copy p { margin-top: 10px; font-size: 42px; }
  .club-can-main { right: 0; bottom: -41%; width: 35%; }
  .club-can-side { right: 25%; bottom: -35%; width: 27%; }
  .club-orbit-energy { right: 27%; bottom: -24px; }
  .club-visual-word { bottom: -6px; left: 13px; font-size: 74px; }
  .club-form-pane { padding: 24px 15px 32px; }
  .club-form-intro h2 { font-size: 50px; }
  .club-form-intro p { margin-top: 12px; }
  .club-form { gap: 16px; margin-top: 20px; }
  .club-fields { grid-template-columns: 1fr; gap: 14px; }
  .club-field input { height: 44px; }
  .city-options { gap: 5px; }
  .city-options label > span { min-height: 58px; }
  .city-options strong { font-size: 12px; }
  .city-options small { font-size: 8px; }
  .club-submit { min-height: 58px; }
  .club-success { min-height: calc(100dvh - 212px); }
  .club-success > strong { font-size: 62px; }
  .hero { height: 700px; min-height: 700px; }
  .hero-video-layer { top: 88px; height: auto; aspect-ratio: 16 / 9; }
  .hero-video-layer video, .hero-video-layer img { object-position: 50% 50%; }
  .footer { margin-top: -1px; }
  .hero-title { font-size: 110px; }
  .hero-title-bottom { top: 494px; }
  .about { height: 150vh; }
  .about-images { padding-top: 56px; }
  .about-copy { width: calc(100% - 28px); min-width: 0; padding-right: 0; padding-left: 0; }
  .about-copy h2 { font-size: clamp(29px, 8.2vw, 32px); }
  .about-image { width: 200px; border-radius: 12px; }
  .about-image-1 { top: 17%; left: 0; height: 171px; }
  .about-image-2 { top: 3%; right: -10px; height: 263px; }
  .about-image-3 { bottom: 10%; left: -8px; height: 265px; }
  .about-image-4 { right: -10px; bottom: 0; height: 265px; }
  .work-section { height: 220vh; }
  .people-section { height: auto; min-height: calc(60vh + 310px); }
  .client-row-1, .client-row-2, .client-row-3 { transform: translateX(var(--row-x)); }
  .services-cards { height: 1240px; }
  .shop { min-height: 0; }
  .shop-head .kinetic-title { height: 78px; font-size: 78px; }
  .shop-head > p { font-size: 18px; }
  .footer { --footer-stage-height: clamp(820px, 115vh, 940px); height: calc(var(--footer-stage-height) + 337px); min-height: 0; }
  .footer-visual { height: var(--footer-stage-height); border-radius: 0 0 50px 50px; }
  .footer-character { bottom: 0; width: 100%; height: 70vh; }
  .footer-cta { top: 88.3%; width: 90%; padding: 20px 0; }
  .footer-links { right: 0; bottom: 147px; left: 0; height: 190px; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 14px; }
  .footer-links a { font-size: 15px; text-align: center; }
  .footer-bottom { right: 0; bottom: 0; left: 0; display: flex; height: 147px; flex-direction: column-reverse; align-items: center; justify-content: center; gap: 17px; margin-top: 0; padding: 20px 14px 28px; text-align: center; }
  .footer-socials { gap: 14px; }
  .footer-social { width: 44px; height: 44px; box-shadow: 5px 5px 0 #004c3f, 0 0 18px rgba(255,255,255,.2); }
  .footer-social svg { width: 21px; height: 21px; }
  .buy-template { right: 14px; bottom: 14px; max-width: calc(100vw - 28px); }
}

@media (max-width: 374px) {
  .nav-actions { gap: 2px; }
  .nav-pill, .cart-toggle { min-width: 0; padding-right: 4px; padding-left: 4px; }
  .people-section { min-height: calc(60vh + 304px); }
  .services-heading { height: auto; }
  .shop { min-height: 0; }
}

@media (max-width: 479px) {
  .services-cards { height: 1240px; }
  .service-stack { margin-top: 161px; }
  .service-card { display: flex; height: auto; min-height: 300px; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 0 0 42px 21px; }
  .service-number { bottom: 0; width: auto; height: 240px; flex: none; align-self: flex-start; font-size: 240px; transform: none; }
  .service-copy { width: auto; margin: 0 auto; }
  .service-copy p { font-size: 18px; }
  .service-tag { top: 22px; right: 18px; font-size: 14px; font-weight: 600; transform: none; }
  .service-card-reverse .service-copy { margin-left: 0; }
  .service-card-reverse .service-number { order: -1; }
}

@media (min-width: 400px) and (max-width: 479px) {
  .people-section { min-height: calc(60vh + 318px); }
  .services-heading { height: auto; }
  .shop { min-height: 0; }
}

@media (max-width: 374px) {
  .hero-email { min-width: 176px; white-space: nowrap; }
  .hero-email span { white-space: nowrap; }
}

@media (min-width: 768px) and (max-width: 991px) {
  .shop-container { padding-top: 120px; }
  .footer-big-text { top: 120px; font-size: 72px; line-height: .92; }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .people-section { height: auto; min-height: 1020px; padding-bottom: 120px; }
  .client-marquee { height: auto; margin-top: 80px; }
  .shop-container { padding-top: 138px; }
}

@media (min-width: 992px) and (max-width: 1599px) {
  .hero-notes,
  .hero-email {
    top: clamp(546px, calc(56.25vw - 12px), 798px);
  }
  .hero-title-bottom {
    top: clamp(672px, calc(56.25vw + 114px), 924px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .footer-fruit { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .product-image { opacity: 1; transform: none !important; }
  .product-image::after { display: none; }
  .product-can-stage { transform: none !important; }
  .product-flip-inner::before { display: none; }
  .product-flip-inner { transform: none !important; }
  .product-flip.is-flipped .product-front { visibility: hidden; }
  .product-flip.is-flipped .product-back { visibility: visible; transform: none; }
  .services-cards { height: auto; overflow: visible; padding: 1px 0 120px; }
  .service-stack { transform: none !important; }
}
