.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__center{
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
  min-height: 100vh;
}

.hero__brand-image{
  width: min(70vw, 520px);
}
#hero-center {
  position: relative;
}

.hero__brand-image {
  position: relative;
  z-index: 2;
}
.logo-wrap{
  position: relative;
  width: min(70vw, 520px); /* match your previous hero__brand-image sizing */
}

.hero__address{
  margin: 10px 0 0;
  text-align: center;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  opacity: 0.55;
}

.hero__status-box{
  width: 100%;
  margin-top: 12px;
  display: block;
  text-align: center;
  color: var(--text);
  opacity: 0.9;
  background: var(--surface);
  border: 0;
  border-radius: 5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 12px rgba(46, 46, 46, 0.08);
}

.hero__status-box.is-open{
  background: color-mix(in srgb, var(--surface) 68%, #96B0D9 32%);
}

.hero__status-box.is-closed{
  background: color-mix(in srgb, var(--surface) 68%, #F0C99E 32%);
}

.hero__status-text{
  margin: 0;
  padding: 12px 16px;
  font-family: "Geist", system-ui, sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

#ca-hero-logo{
  width: 100%;
  height: auto;
}

.hero__brand-image--accords{
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
}
/* Accords sits on top of the full logo but starts hidden */
.hero__brand-image--accords {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
}
.hero__beans{
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none; /* layer ignores pointer */
}

/* Physics wrapper (moves via JS translate) */
.bean-phys{
  position: absolute;
  will-change: transform;
  pointer-events: none; /* wrapper ignores pointer */
}

/* Bean image is interactive */
.bean{
  pointer-events: auto;
  touch-action: none;     /* allow drag */
  user-select: none;
  -webkit-user-drag: none;
  display: block;

  transform-origin: center;
  transform: rotate(var(--rot, 0deg)) scale(1);
  transition: transform 180ms ease;
}

.bean:hover{
  transform: rotate(var(--rot, 0deg)) scale(1.08);
}

/* sizes (keep yours if already set) */
.bean--xs{ width: 34px; }
.bean--sm{ width: 46px; }
.bean--md{ width: 62px; }
.bean--lg{ width: 82px; }
.bean--xl{ width: 110px; }

/* Scroll indicator */
.hero__scroll-indicator{
  position:absolute;
  left:50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display:grid;
  justify-items:center;
  gap: 6px;
  opacity: 0.85;
  user-select:none;
}

.hero__scroll-text{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", system-ui, sans-serif;
}

.hero__scroll-arrow{
  font-size: 22px;
  line-height: 1;
  animation: arrowPulse 1.4s ease-in-out infinite;
  will-change: transform, opacity;
}