:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f0e0b;
  color: #f6f0df;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background:
    radial-gradient(circle at 50% 30%, rgba(185, 147, 70, 0.22), transparent 30rem),
    linear-gradient(135deg, #0f0e0b 0%, #241f17 48%, #0b0b0a 100%);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.25rem, 4vw, 3rem);
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.logo {
  width: min(76vw, 34rem);
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.45);
}

.contact,
.message {
  width: min(100%, 34rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(246, 240, 223, 0.18);
  border-radius: 0.5rem;
  background: rgba(15, 14, 11, 0.78);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1;
  text-align: center;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 240, 223, 0.26);
  border-radius: 0.35rem;
  background: rgba(246, 240, 223, 0.08);
  color: #f6f0df;
  font: inherit;
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid #b99346;
  outline-offset: 2px;
}

button,
.back-link,
.event-link {
  border: 0;
  border-radius: 0.35rem;
  background: #b99346;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
}

button:hover,
.back-link:hover,
.event-link:hover {
  background: #d0ad5c;
}

.event-link {
  margin-top: 0.25rem;
}

.small {
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
}

.trap {
  display: none;
}

.thank-you {
  text-align: center;
}

.message {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.message p {
  margin: 0;
  font-size: 1.15rem;
}

.small-logo {
  width: min(60vw, 12rem);
  height: auto;
  border-radius: 0.35rem;
}

.sheet-page {
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 50% 8%, rgba(185, 147, 70, 0.22), transparent 32rem),
    linear-gradient(135deg, #0f0e0b 0%, #241f17 48%, #0b0b0a 100%);
}

.sheet-hero {
  width: min(100%, 70rem);
  margin: 0 auto 1.25rem;
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.sheet-hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}

.sheet-hero p {
  max-width: 58rem;
  margin: 0;
  color: rgba(246, 240, 223, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
}

.sheet-panel {
  width: min(100%, 70rem);
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid rgba(246, 240, 223, 0.18);
  border-radius: 0.5rem;
  background: rgba(15, 14, 11, 0.78);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

.sheet-panel iframe {
  display: block;
  width: 100%;
  min-height: 72vh;
  border: 0;
  border-radius: 0.35rem;
  background: #fff;
}
