/* Vinyl — Events & Reservations Page */

:root {
  --cream:  #F5F2EC;
  --cream2: #EDE9E0;
  --ink:    #1C1B18;
  --mid:    #6B6860;
  --muted:  #A8A59F;
  --amber:  #BA7517;
  --amber2: #EF9F27;
  --amber3: #FAEEDA;
  --dark:   #0d0a05;
}

.wer-hero {
  background: var(--dark);
  padding: 120px 48px 72px;
  position: relative;
  overflow: hidden;
}
.wer-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(186,117,23,.08) 0%, transparent 65%);
  pointer-events: none;
}
.wer-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.wer-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: var(--font-size-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,199,117,.65);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.wer-eyebrow::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: rgba(250,199,117,.5);
}
.wer-h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-h1);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
}
.wer-h1 em { font-style: italic; }
.wer-hero-sub {
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: rgba(245,242,236,.55);
  max-width: 520px;
}

.wer-body {
  background: var(--cream);
  padding: 80px 48px 100px;
}
.wer-body-inner {
  max-width: 800px;
  margin: 0 auto;
}

.wer-section { margin-bottom: 0; }

.wer-section-over {
  font-family: 'DM Mono', monospace;
  font-size: var(--font-size-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.wer-section-over::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--muted);
}
.wer-h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-h2);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.wer-h2 em { font-style: italic; }
.wer-text {
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 36px;
}

.wer-divider {
  border: none;
  border-top: 0.5px solid #d8d4cc;
  margin: 64px 0;
}

.wer-no-form {
  font-family: 'DM Mono', monospace;
  font-size: var(--font-size-small);
  letter-spacing: .1em;
  color: var(--muted);
  padding: 20px;
  border: 0.5px solid #d8d4cc;
  border-radius: 6px;
}
.wer-no-form a { color: var(--amber); text-decoration: none; }

.wer-back {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 0.5px solid #d8d4cc;
}
.wer-back-link {
  font-family: 'DM Mono', monospace;
  font-size: var(--font-size-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.wer-back-link:hover { color: var(--amber); }

@media (max-width: 768px) {
  .wer-hero { padding: 100px 24px 56px; }
  .wer-h1   { font-size: var(--font-size-h2); }
  .wer-body { padding: 56px 24px 72px; }
}
