:root {
  color: #1f261f;
  background: #e8dfcf;
  font-family: Georgia, "Times New Roman", serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(95, 75, 48, 0.045) 1px, transparent 1px),
    #e8dfcf;
  background-size: 100% 28px;
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 24px;
  border-bottom: 1px solid #9d907b;
  background: #18241d;
  color: #edf3e8;
  font: 600 12px/1.2 ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66d17b;
  box-shadow: 0 0 12px rgba(102, 209, 123, 0.7);
}

.status-copy { margin-left: auto; color: #9eb0a2; }

.shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 480px);
  gap: clamp(48px, 8vw, 120px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) 0 100px;
  align-items: start;
}

.brand-block { max-width: 620px; }
.eyebrow, .ticket-label {
  margin: 0 0 16px;
  font: 700 12px/1.2 ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6e2c26;
}

h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 520px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #4e554c;
}

.paper-card {
  position: relative;
  padding: 34px;
  border: 1px solid #a99e8c;
  border-top: 5px solid #274d37;
  background: #f8f3e9;
  box-shadow: 12px 14px 0 rgba(74, 62, 45, 0.11);
}

.paper-card::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 7px;
  background: repeating-linear-gradient(135deg, transparent 0 6px, #f8f3e9 6px 12px);
}

h2 { margin: 0 0 12px; font-size: 32px; font-weight: 500; }
.paper-card > p:not(.ticket-label) { color: #5a6057; line-height: 1.5; }
form { display: grid; gap: 10px; margin-top: 26px; }
label {
  margin-top: 6px;
  font: 700 11px/1.2 ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #948a78;
  border-radius: 0;
  background: #fffdf7;
  color: #1f261f;
  font: 16px/1.2 system-ui, sans-serif;
}
input:focus { outline: 3px solid rgba(39, 77, 55, 0.18); border-color: #274d37; }

button {
  min-height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 0;
  background: #9e332b;
  color: white;
  font: 700 13px/1 ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover { background: #81271f; }
button:disabled { opacity: 0.58; cursor: wait; }

.form-status { min-height: 24px; margin: 16px 0 0; color: #8a2923 !important; }
.success-card { border-top-color: #2b7650; }
[hidden] { display: none !important; }

footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 24px;
  border-top: 1px solid #9d907b;
  background: rgba(232, 223, 207, 0.96);
  font: 600 11px/1.2 ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .status-copy { display: none; }
  .shell { grid-template-columns: 1fr; width: min(100% - 32px, 560px); padding: 58px 0 90px; gap: 44px; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  .paper-card { padding: 26px; box-shadow: 7px 8px 0 rgba(74, 62, 45, 0.11); }
  footer { position: static; gap: 20px; flex-wrap: wrap; }
}
