/* Vinyl Wine Bar — Wine Club Terms & Conditions Page */
/* Enqueued only on pages using the Wine Club Terms template */

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

/* —— HERO —— */
.wct-hero {
  background: var(--dark);
  padding: 120px 48px 72px;
  position: relative;
  overflow: hidden;
}
.wct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(186,117,23,.08) 0%, transparent 65%);
  pointer-events: none;
}
.wct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.wct-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;
}
.wct-eyebrow::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: rgba(250,199,117,.5);
}
.wct-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;
}
.wct-h1 em { font-style: italic; }
.wct-hero-sub {
  font-size: var(--font-size-body);
  line-height: 1.75;
  color: rgba(245,242,236,.55);
  max-width: 480px;
}

/* —— BODY —— */
.wct-body {
  background: var(--cream);
  padding: 80px 48px 100px;
}
.wct-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* —— PROSE —— */
.wct-welcome {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lead);
  font-style: italic;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid #d8d4cc;
}

.wct-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid #d8d4cc;
}
.wct-section:last-of-type {
  border-bottom: none;
}

.wct-h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-h4);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wct-num {
  font-family: 'DM Mono', monospace;
  font-size: var(--font-size-small);
  letter-spacing: .1em;
  color: var(--amber);
  flex-shrink: 0;
}

.wct-prose ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wct-prose ul li {
  font-size: var(--font-size-body);
  line-height: 1.75;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.wct-prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: var(--font-size-small);
}
.wct-prose ul li strong {
  color: var(--ink);
  font-weight: 500;
}

/* —— BACK LINK —— */
.wct-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 0.5px solid #d8d4cc;
}
.wct-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;
}
.wct-back-link:hover { color: var(--amber); }

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