.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

[hidden] {
  display: none !important;
}

.hero-image {
  background-image: url("../ken-cowork/place/open-workspace.webp");
  background-position: center;
}

.hero-logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(0, 90, 92, .13);
}

.contact-qr {
  width: 120px;
  height: 132px;
  flex: none;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
}

.story-values {
  display: grid;
  gap: 8px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: var(--deep);
  font-weight: 700;
}

.story-signoff {
  color: var(--teal) !important;
  font-size: 1.08rem;
}

.place-main {
  aspect-ratio: 16 / 9;
  background: #102c2c;
}

.place-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-thumb img {
  object-fit: cover;
}

.offers {
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 155, 150, .1), transparent 28%),
    #f7f4e9;
}

.offers-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
  max-width: 1000px;
}

.offers-viewport {
  overflow: hidden;
  border: 1px solid rgba(1, 89, 91, .2);
  border-radius: 4px;
  background: #fffdf8;
  box-shadow: 0 24px 65px rgba(18, 47, 47, .12);
}

.offers-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .8, .25, 1);
  will-change: transform;
}

.offer-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: clamp(440px, 68vw, 720px);
  padding: 24px;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.offer-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(7, 48, 48, .12));
}

.offers-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.offers-arrow:hover,
.offers-arrow:focus-visible {
  color: #fff;
  background: var(--teal);
  outline: 3px solid rgba(0, 155, 150, .22);
  outline-offset: 3px;
}

.offers-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.offers-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: transparent;
}

.offers-dots button[aria-pressed="true"] {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

.video-section {
  background: #0d2929;
  color: #fff;
}

.video-section .section-heading h2,
.video-section .section-heading p {
  color: #fff;
}

.video-frame {
  max-width: 1050px;
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 72vh;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 179, 0, .45);
  background: #071a1a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.video-fallback {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
}

.video-transcript {
  margin-top: 18px;
  max-width: 72ch;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .hero-logo { width: 150px; height: 150px; }
  .hero-copy { padding-bottom: 55px; }
  .contact-qr { width: 94px; height: 104px; }
  .offers-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }
  .offers-arrow {
    width: 44px;
    height: 44px;
  }
  .offer-slide {
    height: 70vh;
    max-height: 580px;
    padding: 10px;
  }
  .place-main {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offers-track {
    transition: none;
  }
}
