:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8A6A1F;
  --m1: #2A2A2E;
  --m2: #3A3A40;
  --m3: #4A4A52;
  --ml: #8A8A92;
  --ms: #B8B8C0;
  --white: #F5F0E8;
  --black: #0A0A0C;
}

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

html {
  overflow-x: hidden
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden
}

body.scroll-locked {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

/* SOUND OVERLAY */
#sound-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 12, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  transition: opacity .6s, visibility .6s
}

#sound-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

#sound-overlay .si {
  font-size: 80px;
  animation: pulse 1.5s ease-in-out infinite
}

#sound-overlay h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite
}

#sound-overlay p {
  color: var(--ml);
  font-size: 18px;
  max-width: 400px
}

#sound-overlay button {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border: none;
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .1em;
  padding: 16px 48px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 30px rgba(201, 168, 76, .4)
}

#sound-overlay button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(201, 168, 76, .6)
}

/* HERO */
#hero {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black), var(--m1), var(--black))
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.hero-bg-number {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 40vw, 500px);
  background: linear-gradient(180deg, rgba(201, 168, 76, .08), rgba(201, 168, 76, .02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0
}

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

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  line-height: .9;
  letter-spacing: 2px;
  opacity: 0
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 3vw, 26px);
  color: #888;
  margin-top: 24px;
  opacity: 0
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: 0;
  z-index: 1
}

.scroll-arrow-right {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollPulseH 1.5s ease-in-out infinite
}

/* SCROLL SECTIONS */
.scroll-section {
  overflow: hidden;
  position: relative
}

.h-container {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform
}

.h-container.reverse {
  flex-direction: row-reverse
}

/* PANELS */
.panel {
  min-width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 60px
}

.panel-w {
  min-width: 120vw
}

.panel-n {
  min-width: 80vw
}

/* PANEL BGs */
.bg-dark {
  background: linear-gradient(135deg, var(--black), var(--m1))
}

.bg-metal {
  background: linear-gradient(135deg, var(--m1), var(--m2), var(--m1))
}

.bg-deep {
  background: radial-gradient(ellipse at center, var(--m2), var(--black))
}

.bg-gold-tint {
  background: linear-gradient(135deg, var(--black), rgba(201, 168, 76, .05), var(--black))
}

/* IMAGE STYLES */
.img-card {
  position: relative
}

.img-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-dark);
  border-radius: 16px;
  opacity: .4;
  transform: rotate(-1.5deg);
  z-index: 0
}

.img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(.95) saturate(.9);
  transition: filter .4s, transform .4s
}

.img-card:hover img {
  filter: brightness(1.1) saturate(1.1);
  transform: scale(1.03)
}

/* FULLBLEED image - fills entire panel background */
.img-fullbleed {
  position: absolute;
  inset: 0;
  z-index: 0
}

.img-fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.8)
}

.img-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 12, .7), rgba(10, 10, 12, .3))
}

/* OVERSIZED image - bleeds out of frame */
.img-oversized {
  position: relative;
  width: 60%;
  max-width: 550px
}

.img-oversized img {
  width: 130%;
  max-width: none;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  border-radius: 8px;
  transform: rotate(-2deg);
  filter: brightness(.9);
  transition: transform .5s
}

.img-oversized:hover img {
  transform: rotate(0deg) scale(1.02)
}

/* FLOATING image - no frame, just shadow */
.img-floating {
  position: relative
}

.img-floating img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(201, 168, 76, .2);
  transition: transform .5s, box-shadow .5s
}

.img-floating:hover img {
  transform: translateY(-8px);
  box-shadow: 0 30px 100px rgba(201, 168, 76, .3)
}

/* POLAROID style */
.img-polaroid {
  background: var(--white);
  padding: 12px 12px 40px;
  border-radius: 4px;
  transform: rotate(2deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  transition: transform .4s
}

.img-polaroid:hover {
  transform: rotate(0deg) scale(1.02)
}

.img-polaroid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px
}

.img-polaroid .label {
  color: var(--black);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  margin-top: 8px
}

/* STORY CARD LAYOUT */
.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  width: 100%
}

.story-card.reverse .sc-img {
  order: 2
}

.story-card.reverse .sc-txt {
  order: 1
}

/* TEXT OVER FULLBLEED */
.text-overlay {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left
}

.text-overlay.center {
  text-align: center;
  margin: 0 auto
}

.story-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .4);
  animation: wiggle 3s ease-in-out infinite
}

.story-tag {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.story-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 20px
}

.story-body {
  font-size: 16px;
  line-height: 1.8;
  color: #aaa
}

.story-body strong {
  color: var(--gold-light);
  font-weight: 500
}

.quote-box {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, .06);
  border-radius: 0 8px 8px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
  line-height: 1.6
}

.statement-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  line-height: 1.1;
  text-align: center;
  max-width: 900px
}

.statement-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite
}

/* CHAPTER LABEL */
.chapter-label {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--gold-dark);
  text-transform: uppercase;
  white-space: nowrap
}

.chapter-label::before,
.chapter-label::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  vertical-align: middle;
  margin: 0 16px
}

/* VIDEO PANEL */
.video-panel {
  background: var(--black) !important;
  padding: 0 !important;
  flex-direction: column;
  gap: 0
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0
}

.video-panel .v-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.video-panel .v-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  background: var(--black);
  z-index: 2;
  transition: height 1.2s cubic-bezier(.4, 0, .2, 1)
}

.video-panel .v-bar.top {
  top: 0
}

.video-panel .v-bar.bottom {
  bottom: 0
}

.video-panel.active .v-bar {
  height: 0 !important
}

.video-panel .v-title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transition: opacity .8s .5s
}

.video-panel.active .v-title {
  opacity: 1
}

.film-deco {
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  background: repeating-linear-gradient(90deg, var(--gold-dark) 0px, var(--gold-dark) 16px, transparent 16px, transparent 26px);
  opacity: .2;
  z-index: 3
}

.film-deco.top {
  top: 0
}

.film-deco.bottom {
  bottom: 0
}

/* SUN GLOW – "Er bringt die Sonne mit" */
.sun-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center,
      rgba(255, 210, 60, .35) 0%,
      rgba(240, 180, 40, .2) 20%,
      rgba(201, 168, 76, .1) 40%,
      transparent 65%);
  z-index: 1;
  pointer-events: none;
  animation: sunPulse 4s ease-in-out infinite
}

@keyframes sunPulse {

  0%,
  100% {
    opacity: .8;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08)
  }
}

/* NACH GANZ OBEN – inverted overlay: dark bottom, bright top */
#nach-oben-panel .img-fullbleed::after {
  background: linear-gradient(to top, rgba(10, 10, 12, .75) 0%, rgba(10, 10, 12, .3) 40%, rgba(10, 10, 12, .05) 100%)
}

#nach-oben-panel .img-fullbleed img {
  filter: brightness(.55) saturate(.9)
}

/* FINALE */
#finale {
  background: radial-gradient(ellipse at center, var(--m1), var(--black)) !important
}

#finale-canvas {
  position: absolute;
  inset: 0;
  z-index: 0
}

.finale-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px
}

.finale-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 140px);
  line-height: .9;
  margin-bottom: 30px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.finale-body {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.7;
  margin-bottom: 40px
}

.finale-sig {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold)
}

/* PARTICLES */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  pointer-events: none;
  animation: sparkleAnim var(--dur, 2s) var(--delay, 0s) ease-in-out infinite
}

.float-emoji {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  opacity: .6;
  animation: floatUp var(--dur, 4s) var(--delay, 0s) ease-in-out infinite
}

.glitter-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9998
}

/* AMBIENT BG ANIMATION */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .15;
  animation: ambientDrift var(--dur, 8s) ease-in-out infinite alternate
}

/* GALLERY SECTION */
.gallery-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 20px
}

.gallery-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 12px
}

.gallery-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px
}

.gallery-subtitle strong {
  color: var(--gold-light);
  font-weight: 500
}

/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--m1)
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 300px
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto
}

.carousel-slide.exit-left {
  opacity: 0;
  transform: translateX(-60px)
}

.carousel-slide.enter-right {
  transform: translateX(60px)
}

.carousel-slide.enter-left {
  transform: translateX(-60px)
}

.carousel-slide.exit-right {
  opacity: 0;
  transform: translateX(60px)
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  border-radius: 12px
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(10, 10, 12, .7);
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s, box-shadow .3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4)
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, .5)
}

.carousel-btn:active {
  transform: translateY(-50%) scale(.95)
}

.carousel-btn.prev {
  left: 12px
}

.carousel-btn.next {
  right: 12px
}

.carousel-counter {
  text-align: center;
  padding: 12px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--gold)
}

/* KEYFRAMES */
@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0)
  }

  25% {
    transform: rotate(-8deg)
  }

  75% {
    transform: rotate(8deg)
  }
}

@keyframes scrollPulseH {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1
  }

  50% {
    transform: scaleX(.6);
    opacity: .4
  }
}

@keyframes sparkleAnim {

  0%,
  100% {
    opacity: 0;
    transform: scale(0)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0);
    opacity: .6
  }

  50% {
    transform: translateY(-40px) rotate(10deg);
    opacity: .3
  }

  100% {
    transform: translateY(0) rotate(0);
    opacity: .6
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(40px, -30px) scale(1.2)
  }
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.03)
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@media(max-width:768px) {

  /* PANELS */
  .panel {
    padding: 20px 16px;
    min-width: 100vw !important
  }

  .panel-w {
    min-width: 100vw !important
  }

  .panel-n {
    min-width: 100vw !important
  }

  /* STORY CARDS */
  .story-card {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%
  }

  .story-card.reverse .sc-img {
    order: 0
  }

  .story-card.reverse .sc-txt {
    order: 1
  }

  /* IMAGES */
  .img-card img,
  .img-floating img {
    height: 280px;
    border-radius: 12px
  }

  .img-oversized {
    width: 90%;
    max-width: 100%
  }

  .img-oversized img {
    width: 100%;
    transform: rotate(0);
    border-radius: 12px
  }

  .img-polaroid {
    padding: 8px 8px 28px
  }

  .img-polaroid img {
    height: 260px
  }

  .img-fullbleed img {
    filter: brightness(.35) saturate(.7)
  }

  /* TYPOGRAPHY */
  .story-headline {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 12px
  }

  .story-body {
    font-size: 14px;
    line-height: 1.7
  }

  .story-tag {
    font-size: 10px;
    letter-spacing: .3em;
    margin-bottom: 8px
  }

  .quote-box {
    font-size: 13px;
    padding: 12px 14px;
    margin-top: 14px
  }

  .statement-text {
    font-size: clamp(28px, 10vw, 60px);
    padding: 0 16px
  }

  /* TEXT OVERLAY on fullbleed */
  .text-overlay {
    padding: 0 12px;
    max-width: 100%
  }

  /* HERO */
  #hero {
    height: 100svh
  }

  .hero-title {
    font-size: clamp(60px, 22vw, 120px)
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    margin-bottom: 12px
  }

  .hero-subtitle {
    font-size: clamp(14px, 3.5vw, 18px);
    margin-top: 16px
  }

  .hero-bg-number {
    font-size: clamp(150px, 50vw, 300px)
  }

  .scroll-hint {
    bottom: 24px;
    font-size: 10px
  }

  .scroll-arrow-right {
    width: 30px
  }

  /* CHAPTER LABEL */
  .chapter-label {
    font-size: 9px;
    letter-spacing: .25em;
    top: 12px;
    padding: 0 8px
  }

  .chapter-label::before,
  .chapter-label::after {
    width: 24px;
    margin: 0 8px
  }

  /* VIDEO PANEL */
  .video-panel .v-title {
    font-size: 12px;
    letter-spacing: .2em;
    top: 10px
  }

  .film-deco {
    height: 14px
  }

  /* STORY BADGE */
  .story-badge {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: -10px;
    right: -8px
  }

  /* SOUND OVERLAY */
  #sound-overlay .si {
    font-size: 54px
  }

  #sound-overlay h2 {
    font-size: 32px
  }

  #sound-overlay p {
    font-size: 14px;
    max-width: 300px;
    padding: 0 20px
  }

  #sound-overlay button {
    font-size: 18px;
    padding: 14px 32px
  }

  /* FINALE */
  .finale-title {
    font-size: clamp(48px, 14vw, 90px)
  }

  .finale-body {
    font-size: clamp(15px, 3.5vw, 20px);
    line-height: 1.6;
    padding: 0 8px
  }

  .finale-sig {
    font-size: 11px;
    letter-spacing: .2em
  }

  .finale-content {
    max-width: 100%;
    padding: 0 8px
  }

  /* DECORATIVE ELEMENTS – reduce on mobile */
  .float-emoji {
    font-size: 16px !important;
    opacity: .4 !important
  }

  .sparkle {
    width: 3px;
    height: 3px
  }

  .ambient-glow {
    display: none !important
  }

  .cursor-dot {
    display: none !important
  }

  /* POLAROID label */
  .img-polaroid .label {
    font-size: 12px
  }

  /* CAROUSEL */
  .carousel {
    max-width: 100%
  }

  .carousel-track {
    min-height: 240px
  }

  .carousel-slide img {
    max-height: 55vh
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 22px
  }

  .carousel-btn.prev {
    left: 8px
  }

  .carousel-btn.next {
    right: 8px
  }

  .carousel-counter {
    font-size: 14px;
    padding: 8px 0
  }
}

/* Extra small devices */
@media(max-width:380px) {
  .panel {
    padding: 14px 12px
  }

  .story-headline {
    font-size: clamp(24px, 7vw, 34px)
  }

  .story-body {
    font-size: 13px
  }

  .hero-title {
    font-size: clamp(50px, 20vw, 100px)
  }

  .statement-text {
    font-size: clamp(24px, 9vw, 48px)
  }

  #sound-overlay h2 {
    font-size: 26px
  }

  #sound-overlay button {
    font-size: 16px;
    padding: 12px 28px
  }

  .img-card img,
  .img-floating img {
    height: 240px
  }
}