html {
  background: linear-gradient(to bottom, #ffffff, #949494);
  min-height: 100%;
}

#contact-btn {
  position: fixed;
  top: 40px;
  right: 20px;
  background: rgb(240, 236, 0);
  color: #111;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 6px;
  transform: rotate(20deg);
  box-shadow: 3px 4px 0px rgba(125, 125, 125, 0.2);
  z-index: 100;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

#contact-btn:hover {
  transform: rotate(15deg) scale(1.02);
  box-shadow: 4px 6px 0px rgba(0, 0, 0, 0.22);
}

.cube-scene {
  --size: 420px;
  --half: 210px;
  width: var(--size);
  height: var(--size);
  perspective: 1000px;
  margin: 0 auto 64px;
}

#cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 8px 24px -4px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(var(--half));
}
.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(var(--half));
}
.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(var(--half));
}
.cube-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(var(--half));
}
.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(var(--half));
}
.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(var(--half));
}

.cube-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cube-face iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.yt-embed {
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.cube-face .yt-embed {
  aspect-ratio: unset;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.yt-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.yt-play:hover {
  background: rgba(0, 0, 0, 0.9);
}

.yt-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

body {
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 96px 24px;
  background-color: transparent;
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 180px;
}

header h1 {
  font-family: 'Sigmar', sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin: 0;
  line-height: 1;
}

header p {
  margin: 0;
  font-family: 'Love Ya Like A Sister', cursive;
  font-weight: 400;
  font-size: 18px;
  cursor: default;
}

@media (max-width: 600px) {
  .cube-scene {
    --size: 280px;
    --half: 140px;
  }
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 480px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.form-group input {
  height: 45px;
  padding: 12px 16px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E5E7EB;
}

#submit-btn {
  padding: 12px 16px;
  background: #111;
  color: white;
  border: none;
  border-radius: 36px;
  font-size: 16px;
  font-family: 'Love Ya Like A Sister', cursive;
  cursor: pointer;
  align-self: stretch;
  height: 45px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

#submit-fill {
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
}

#submit-text {
  position: relative;
  z-index: 1;
}

#submit-text-black {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

#contact-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#form-status {
  font-size: 22px;
  font-family: 'Love Ya Like A Sister', cursive;
  color: #111;
  text-align: center;
}

#reveal-left,
#reveal-right {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100vh;
  background: #111;
  z-index: 999;
}

#reveal-left {
  left: 0;
  transform: translateX(-100%);
}

#reveal-right {
  right: 0;
  transform: translateX(100%);
}

#contact-section {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

