:root {
  --black: #000;
  --white: #fff;
  --gray: #9c9c9c;
  --hover: #808080;
  --side: #1a1a1a;
  --page-width: 1054px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--side);
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a,
button {
  color: inherit;
  font: inherit;
}

.site-shell {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  background: var(--black);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 114px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 32px;
}

.menu-toggle {
  border: 0;
  background: transparent;
  font-size: 64px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  width: 54px;
  height: 66px;
  display: grid;
  place-items: center;
  transition: color .18s ease;
}

.menu-toggle:hover,
.main-menu a:hover,
.more-toggle:hover,
.portfolio a:hover,
address a:hover {
  color: var(--hover);
}

.brand {
  display: inline-flex;
  width: 226px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.main-menu {
  position: absolute;
  left: 30px;
  top: 88px;
  width: 330px;
  padding: 20px 22px 24px;
  background: rgba(0, 0, 0, .94);
  display: grid;
  gap: 15px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.main-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .18s ease;
}

.hero {
  position: relative;
  aspect-ratio: 2842 / 1359;
  height: auto;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.audio-panel {
  position: absolute;
  left: 4.8%;
  bottom: 7%;
  width: 50%;
  height: 18%;
}

.audio-panel::before {
  content: "";
  position: absolute;
  inset: -8px -15px -9px -6px;
  background: rgba(0, 0, 0, .94);
  opacity: 0;
  z-index: 0;
  transition: opacity .12s ease;
}

.audio-panel.is-playing::before {
  opacity: 1;
}

.audio-controls {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.play-toggle,
.stop-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.play-toggle {
  position: relative;
  width: 100%;
  height: 100%;
}

.play-toggle::after {
  content: "SHIQO REKLAMEN";
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 2;
  display: block;
  padding: 8px 12px;
  background: rgba(0, 0, 0, .78);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.play-toggle:hover::after,
.play-toggle:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.play-symbol {
  display: none;
  position: absolute;
  inset: 0;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 50px solid var(--white);
}

.pause-symbol {
  display: none;
  position: absolute;
  inset: 0;
}

.pause-symbol::before,
.pause-symbol::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 17px;
  height: 56px;
  background: var(--white);
}

.pause-symbol::before {
  left: 4px;
}

.pause-symbol::after {
  right: 4px;
}

.play-toggle.is-playing {
  background: rgba(0, 0, 0, .48);
}

.play-toggle.is-playing .pause-symbol {
  display: block;
}

.stop-button {
  width: 50px;
  height: 50px;
  background: transparent;
  margin-bottom: 3px;
}

.audio-panel.is-playing .stop-button {
  background: var(--white);
}

.equalizer {
  display: none;
  height: 58px;
  align-items: flex-end;
  gap: 5px;
  padding-left: 4px;
}

.equalizer span {
  display: block;
  width: 6px;
  height: var(--idle-height);
  background: var(--white);
  transform-origin: bottom;
  opacity: 0;
}

.equalizer.is-playing span {
  animation: eq-bounce 650ms ease-in-out infinite alternate;
  animation-delay: var(--delay);
  opacity: 1;
}

@keyframes eq-bounce {
  from {
    height: 0;
  }
  to {
    height: var(--bar-height);
  }
}

.audio-panel p {
  display: none;
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.audio-panel.is-playing p {
  display: block;
}

.content-section {
  padding: 70px 66px 0 66px;
  scroll-margin-top: 134px;
}

.intro {
  min-height: 390px;
  padding-top: 64px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  color: var(--white);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 32px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__dialog iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal__close {
  position: absolute;
  right: -4px;
  top: -46px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 34px;
}

.about h2 span {
  font-weight: 400;
}

.content-section p,
.dash-list,
.about-copy {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.intro > p {
  max-width: 1130px;
  margin-left: 8px;
}

.dash-list {
  list-style: none;
  padding: 0;
  margin: 19px 0 0 8px;
}

.dash-list li {
  margin: 10px 0;
}

.dash-list li::before,
.portfolio h3::before {
  content: "— ";
}

.italic {
  font-style: italic;
  font-weight: 400;
}

.closing-copy {
  margin-top: 38px;
  max-width: 1160px;
}

.portfolio {
  padding-top: 138px;
}

.portfolio h2 {
  margin-bottom: 37px;
}

.portfolio-group {
  margin: 0 0 54px;
}

.portfolio h3 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio a {
  display: block;
  text-decoration: none;
  margin-left: 48px;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 600;
  transition: color .18s ease;
}

.about {
  padding-top: 92px;
}

.about-grid {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 56px;
  align-items: start;
}

.about img {
  width: 490px;
  height: auto;
  display: block;
}

.about-copy {
  min-height: 567px;
  display: flex;
  flex-direction: column;
}

.about-copy p + p {
  margin-top: 8px;
}

.about-copy strong {
  font-weight: 700;
}

.more-text {
  margin-top: 8px;
}

.more-toggle {
  align-self: flex-end;
  margin-top: auto;
  border: 0;
  background: transparent;
  padding: 14px 0 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  transition: color .18s ease;
}

.contact {
  padding-top: 112px;
  padding-bottom: 82px;
}

.contact h2 {
  display: block;
  margin-bottom: 34px;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.contact form {
  display: grid;
  gap: 36px;
}

input,
textarea {
  border: 0;
  background: var(--white);
  color: #111;
  font: 700 18px/1.2 "Montserrat", Arial, Helvetica, sans-serif;
  padding: 14px 16px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #b7b7b7;
  opacity: 1;
}

input[type="email"] {
  width: 334px;
  height: 52px;
}

input[type="text"] {
  width: 628px;
  height: 54px;
}

textarea {
  width: 100%;
  height: 349px;
  resize: vertical;
}

.contact button[type="submit"] {
  justify-self: end;
  width: 213px;
  height: 65px;
  margin-top: -13px;
  border: 0;
  background: #a3a3a3;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}

.contact button[type="submit"]:disabled {
  cursor: progress;
  opacity: .65;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  margin: -8px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.form-status.is-error {
  color: #ff6b6b;
}

.footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 39px;
}

address {
  display: grid;
  gap: 31px;
  font-style: normal;
}

address a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.footer-logo {
  width: 327px;
  margin-right: 3px;
}

@media (max-width: 900px) {
  body {
    background: var(--black);
  }

  .site-shell {
    width: 100%;
  }

  .site-header {
    height: 104px;
    padding: 0 24px;
  }

  .menu-toggle {
    font-size: 58px;
    width: 48px;
  }

  .brand {
    width: 205px;
  }

  .main-menu {
    left: 22px;
    top: 84px;
    width: min(310px, calc(100vw - 44px));
  }

  .hero {
    aspect-ratio: 2842 / 1359;
    height: auto;
  }

  .hero-image {
    object-position: center center;
  }

  .audio-panel {
    left: 24px;
    bottom: 32px;
    width: 69%; /* ~50% visual width after the .72 scale below */
    transform: scale(.72);
    transform-origin: left bottom;
  }

  .content-section {
    padding: 64px 24px 0;
  }

  .intro {
    min-height: 0;
  }

  h1,
  h2 {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 28px;
  }

  .content-section p,
  .dash-list,
  .about-copy {
    font-size: clamp(15px, 4vw, 18px);
  }

  .portfolio {
    padding-top: 86px;
  }

  .portfolio h3 {
    font-size: 22px;
  }

  .portfolio a {
    margin-left: 32px;
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about img {
    width: 100%;
    height: auto;
    max-height: 567px;
    object-fit: cover;
  }

  .about-copy {
    min-height: 0;
  }

  .more-toggle {
    margin-top: 20px;
    font-size: 18px;
  }

  input[type="email"],
  input[type="text"],
  textarea {
    width: 100%;
  }

  .contact form {
    gap: 22px;
  }

  input,
  textarea {
    font-size: 17px;
  }

  .contact button[type="submit"] {
    width: 178px;
    height: 58px;
    margin-top: 0;
  }

  .footer-row {
    display: grid;
    gap: 46px;
  }

  address a {
    font-size: 18px;
  }

  .footer-logo {
    width: min(327px, 78vw);
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 162px;
  }

  .hero {
    aspect-ratio: 2842 / 1359;
    height: auto;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    transform: none;
  }
}
