/* choreography.info — stark minimal */

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

html {
  font-size: 16px;
}

body {
  font-family: "Times New Roman", Times, serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Layout */

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Navigation */

nav {
  font-size: 0.85rem;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  text-decoration: underline;
}

/* Header / Top Section */

.header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.header h1 {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 4px;
}

.header h1 span {
  font-style: italic;
}

.header .artist {
  font-size: 1rem;
  margin-bottom: 20px;
}

.header .price {
  font-family: monospace;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.header .discount {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Body Text */

.description {
  margin-bottom: 50px;
  font-size: 1rem;
  text-align: left;
}

/* Form */

.form-section {
  margin-bottom: 50px;
}

.form-section p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: 24px;
}

form label:first-child {
  margin-top: 0;
}

form fieldset {
  border: none;
  padding: 0;
  margin: 36px 0 0;
}

form fieldset:first-of-type {
  margin-top: 32px;
}

form legend {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="number"],
form textarea,
form select {
  display: block;
  width: 100%;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="number"],
form select {
  min-height: 42px;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-bottom-width: 2px;
}

form input:focus-visible,
form textarea:focus-visible,
form select:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

form textarea {
  min-height: 80px;
  resize: vertical;
}

form select {
  cursor: pointer;
}

form .field-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 4px;
  line-height: 1.4;
}

form .optional {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  letter-spacing: 0.01em;
}

form button[type="submit"] {
  margin-top: 36px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  cursor: pointer;
  letter-spacing: 0.03em;
  min-height: 44px;
}

form button[type="submit"]:hover {
  background: #333;
}

/* Scheduling Instructions */

.instructions {
  margin-bottom: 50px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Payment Section */

.payment {
  padding-top: 40px;
  border-top: 1px solid #000;
}

.payment h2 {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-options a {
  display: block;
  text-align: center;
  font-family: monospace;
  font-size: 1rem;
  padding: 14px 0;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: background 0.15s, color 0.15s;
}

.payment-options a:hover {
  background: #000;
  color: #fff;
}

.payment-options a.disabled {
  pointer-events: none;
  color: #999;
  border-color: #999;
}

.payment-options a.disabled:hover {
  background: transparent;
  color: #999;
}

/* Photo Page */

.photo-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-page img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
}

.photo-page .caption {
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

/* PDF Page */

.pdf-page {
  min-height: calc(100vh - 140px);
}

.pdf-page embed,
.pdf-page object {
  width: 100%;
  height: calc(100vh - 160px);
  border: none;
}

.pdf-page .fallback {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Confirmation Page */

.confirmation {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confirmation p {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Form submission feedback */

.form-submitted {
  display: none;
  padding: 20px 0;
  font-size: 1rem;
}

/* Responsive */

@media (max-width: 480px) {
  .page {
    padding: 32px 18px 60px;
  }

  .header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  nav a {
    margin-right: 14px;
  }

  nav {
    margin-bottom: 44px;
  }

  .pdf-page {
    min-height: calc(100vh - 70px);
  }

  .pdf-page embed,
  .pdf-page object {
    height: calc(100vh - 90px);
  }
}
