#home-canvas {
  position: relative;
  display: flex;
  align-items: stretch;
  width: max-content;
  padding-top: 5.2rem;
  padding-bottom: 4rem;
}

.panel {
  position: relative;
  height: calc(100vh - 9.2rem);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--panel-pad-desktop);
  border-right: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
}

.panel--xwide { width: 100vw; min-width: 100vw; }
.panel--wide  { width: 68vw;  min-width: 68vw; }
.panel--half  { width: 46vw;  min-width: 46vw; }
.panel--narrow{ width: 34vw;  min-width: 34vw; }

.panel-eyebrow {
  font-size: 0.72rem;
}

.panel-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 0.75rem;
}

.panel-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32ch;
  margin-top: 1rem;
}

.panel-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* --- box-1: hero --- */
.hero-visual {
  --hero-size: min(46vw, 520px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--hero-size);
  height: var(--hero-size);
  margin-top: calc(var(--hero-size) / -2);
  margin-left: calc(var(--hero-size) / -2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  z-index: 1;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--line);
  border-radius: 50%;
  animation: spinCW 18s linear infinite;
}

.hero-visual span {
  position: relative;
  z-index: 1;
}

@keyframes spinCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spinCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-cities {
  position: absolute;
  bottom: 2.5rem;
  right: var(--panel-pad-desktop);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
}

.deco-mark {
  position: absolute;
  border-radius: 50%;
  background: var(--fg);
  opacity: 0.9;
}

.panel--hero .deco-mark:nth-of-type(1) { width: 10px; height: 10px; top: 18%; left: 12%; }
.panel--hero .deco-mark:nth-of-type(2) { width: 6px;  height: 6px;  top: 28%; left: 22%; }
.panel--hero .deco-mark:nth-of-type(3) { width: 14px; height: 14px; top: 70%; left: 18%; }
.panel--hero .deco-mark:nth-of-type(4) { width: 8px;  height: 8px;  top: 14%; right: 16%; }
.panel--hero .deco-mark:nth-of-type(5) { width: 5px;  height: 5px;  top: 60%; right: 24%; }

/* --- box-3: product callout --- */
.callout-arrow {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

/* --- box-4: menu list --- */
.menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.6ch;
  margin-top: 1.25rem;
  max-width: 34ch;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.menu-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.6ch;
  color: var(--muted);
}

.menu-list a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.menu-list a:hover {
  border-color: var(--fg);
}

/* --- box-5: media gallery --- */
.media-gallery {
  display: flex;
  gap: 1px;
  height: 100%;
  margin: 0 calc(-1 * var(--panel-pad-desktop));
}

.media-block {
  position: relative;
  flex: 1;
  background: var(--gray-1);
  overflow: hidden;
  cursor: pointer;
}

.media-still,
.media-playing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.media-playing {
  background: repeating-linear-gradient(45deg, #000 0 10px, #262626 10px 20px);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.25s ease;
  animation: mediaScroll 6s linear infinite;
}

.media-block[data-playing="true"] .media-playing {
  opacity: 1;
}

.media-block[data-playing="true"] .media-still {
  opacity: 0;
  transition: opacity 0.25s ease;
}

@keyframes mediaScroll {
  from { background-position: 0 0; }
  to   { background-position: 200% 200%; }
}

/* --- box-6: instagram / qr --- */
.qr-box {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  margin-top: 1.25rem;
  background-image: linear-gradient(var(--fg) 1px, transparent 1px), linear-gradient(90deg, var(--fg) 1px, transparent 1px);
  background-size: 11px 11px;
  background-color: var(--bg);
}

.instagram-link {
  display: inline-flex;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.25rem;
}

/* --- box-7: brand video loop --- */
.video-loop {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, #000 0 14px, #2b2b2b 14px 28px);
  background-size: 240% 240%;
  animation: mediaScroll 10s linear infinite;
}

.video-loop-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  align-self: flex-start;
}

/* --- box-8: collab --- */
.collab-mark {
  width: 120px;
  height: 60px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

/* --- box-9: faqs teaser --- */
.faqs-badge {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faqs-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--line);
  animation: spinCW 24s linear infinite;
}

.faqs-badge span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faqs-bubble {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
}

.panel--faqs .faqs-bubble:nth-of-type(1) { top: 20%; right: 20%; }
.panel--faqs .faqs-bubble:nth-of-type(2) { top: 32%; right: 12%; }

/* --- box-11: extra image panel --- */
.image-block {
  width: 100%;
  height: 62%;
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- box-12: about us teaser --- */
.about-shape {
  width: 90px;
  height: 90px;
  border: 1.5px solid var(--line);
  border-radius: 999px 999px 0 999px;
  margin-top: 1.25rem;
}

/* --- box-13: pack panel --- */
.pack-visual {
  width: 130px;
  height: 90px;
  border: 1.5px solid var(--line);
  position: relative;
  margin-top: 1.25rem;
}

.pack-visual::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--line);
}

.pack-star {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 1.1rem;
}

/* --- box-14: banner marquee --- */
.panel--banner {
  padding: 0;
  justify-content: flex-end;
}

.banner-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.banner-track span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 6rem);
  text-transform: uppercase;
  padding-right: 3rem;
}

.banner-caption {
  padding: 1.5rem var(--panel-pad-desktop) 3rem;
}

.banner-caption .panel-heading {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

/* --- box-15: closing panel --- */
.panel--closing {
  align-items: center;
  text-align: center;
}

/* --- sticker layer --- */
#sticker-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}

.sticker {
  position: absolute;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.sticker--round {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 0.5rem;
}

.sticker--tag {
  width: 130px;
  height: 56px;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.sticker--dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  border: none;
}

.sticker--at {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

/* positions along the 14-panel track (approximate viewport widths) */
.sticker[data-sticker="1"] { top: 12%;  left: 6vw; }
.sticker[data-sticker="2"] { top: 70%;  left: 14vw; }
.sticker[data-sticker="3"] { top: 20%;  left: 32vw; }
.sticker[data-sticker="4"] { top: 65%;  left: 40vw; }
.sticker[data-sticker="5"] { top: 30%;  left: 96vw; }
.sticker[data-sticker="6"] { top: 75%;  left: 160vw; }
.sticker[data-sticker="7"] { top: 22%;  left: 320vw; }

@media (max-width: 767px) {
  #home-canvas {
    display: block;
    width: 100%;
    padding-top: 9rem;
    padding-bottom: 5rem;
  }

  .panel {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: auto;
    padding: 3rem var(--panel-pad-mobile);
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    position: relative;
    left: auto;
    top: auto;
    width: 60vw;
    height: 60vw;
    margin: 1.5rem auto 0;
  }

  .hero-cities {
    position: static;
    margin-top: 1.5rem;
  }

  .media-gallery {
    flex-direction: column;
    height: auto;
    margin: 0;
    gap: 2px;
  }

  .media-block {
    height: 220px;
  }

  .panel--banner {
    padding: 3rem 0 0;
  }

  #sticker-layer {
    display: none;
  }

  .deco-mark,
  .faqs-bubble {
    display: none;
  }
}
