:root {
  --bg: #10100f;
  --panel: #171614;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4efe5;
  --muted: #c8beae;
  --gold: #ecb320;
  --body: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background: var(--bg);
}

main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

.hero {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
}

.hero-media {
  max-width: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 620px;
}

.order-button,
.secondary-button,
.dialog-close {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.order-button {
  padding: 0.72rem 1rem;
  color: #15120b;
  border-color: rgba(236, 179, 32, 0.8);
  background: var(--gold);
}

.secondary-button,
.dialog-close {
  color: var(--text);
  background: transparent;
}

.secondary-button {
  padding: 0.72rem 1rem;
}

.hero-options {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-options p:not(.eyebrow) {
  font-size: 0.95rem;
}

.order-cta {
  display: grid;
  gap: 16px;
  align-items: center;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid rgba(236, 179, 32, 0.38);
  background: rgba(236, 179, 32, 0.08);
}

.order-cta p {
  margin-top: 0;
}

.order-cta .order-button {
  width: 100%;
  min-height: 48px;
}

.price-lockup {
  display: grid;
  gap: 6px;
  margin: 2px 0 12px;
  padding: 14px 0 14px 16px;
  border-left: 3px solid var(--gold);
}

.price-label,
.price-detail {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.35;
}

.price-label {
  color: var(--text);
  font-size: 0.92rem;
}

.price-amount {
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(1.5rem, 5vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}

.price-detail {
  color: var(--muted);
  font-size: 0.82rem;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 620px;
  margin-bottom: 16px;
}

.video-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.gallery {
  display: grid;
  gap: 16px;
}

figure {
  margin: 0;
}

.gallery figure {
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery img {
  width: 100%;
  height: auto;
}

figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.info-section {
  display: grid;
  gap: 26px;
}

.info-section article {
  max-width: 680px;
}

.order-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  padding: 0;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel);
}

.order-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.order-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0.42rem 0.62rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.order-form h2 {
  padding-right: 4rem;
}

.order-form p {
  margin-top: 0;
}

.order-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.72rem 0.78rem;
  color: var(--text);
  background: #0f0f0e;
  font: 1rem var(--sans);
}

.order-form textarea {
  resize: vertical;
}

.trap-field {
  position: absolute;
  left: -100vw;
}

.form-message {
  min-height: 1.4em;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 760px) {
  main {
    width: min(980px, calc(100% - 48px));
    padding-top: 32px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
  }

  .hero-media {
    max-width: none;
  }

  .order-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 20px;
  }

  .price-lockup {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 4px 22px;
    padding-right: 18px;
  }

  .price-label,
  .price-detail {
    grid-column: 1;
  }

  .price-amount {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .order-cta .order-button {
    width: auto;
    min-width: 180px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .info-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
