:root {
  --blue: #53b6ff;
  --blue-strong: #2d96e7;
  --ink: #5f6670;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 28px 80px rgba(91, 114, 138, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(83, 182, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.page {
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: 0.9rem 0 3rem;
}

.poster-shell {
  display: block;
}

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

.contact-kicker {
  margin: 0;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin: 0;
  color: #6c7480;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.contact-copy p {
  margin: 0;
  color: #727c88;
  line-height: 1.65;
}

.poster-stage {
  position: relative;
  width: min(100% - 1rem, 46rem);
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}

.poster-art {
  display: block;
  width: 100%;
  height: auto;
}

.poster-hotspot {
  position: absolute;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.contact-region-hotspot {
  left: 8%;
  top: 21.7%;
  width: 84%;
  height: 8.7%;
  border-radius: 2rem;
}

.email-hotspot {
  left: 65%;
  top: 25.6%;
  width: 31.8%;
  height: 1.2%;
  border-radius: 999px;
}

.pete-hotspot {
  left: 3%;
  top: 34.8%;
  width: 34%;
  height: 7%;
  border-radius: 50%;
}

.contact-panel {
  margin: 1.75rem auto 0;
  width: min(100% - 1rem, 42rem);
  padding: 1.4rem;
  border: 1px solid rgba(83, 182, 255, 0.18);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(83, 182, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 255, 0.98));
  box-shadow: var(--shadow);
}

.contact-copy {
  display: grid;
  gap: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #777f8c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(83, 182, 255, 0.18);
  border-radius: 1rem;
  font: inherit;
  color: #5d6772;
  background: var(--panel);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(83, 182, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(83, 182, 255, 0.12);
  outline: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.action-button {
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.action-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue));
  box-shadow: 0 14px 30px rgba(83, 182, 255, 0.24);
}

.action-button-secondary {
  color: #66717d;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(83, 182, 255, 0.18);
  box-shadow: 0 12px 26px rgba(117, 132, 149, 0.1);
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--blue-strong);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .page {
    width: 100%;
    padding-top: 0.35rem;
  }

  .poster-stage,
  .contact-panel {
    width: min(100% - 0.75rem, 46rem);
  }

  .contact-panel {
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .action-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .action-button {
    transition: none;
  }
}
