/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--parch);
  font-family: var(--fell);
  overflow-x: hidden;
}

/* Film-grain overlay — references the extracted graphic */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../graphics/grain.svg');
  background-repeat: repeat;
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* ── Shared section helpers ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.eyebrow::after { content: '✦'; font-size: 0.5rem; opacity: 0.6; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--parch);
  margin-bottom: 1rem;
}

.section-sub {
  font-family: var(--fell);
  font-style: italic;
  font-size: 1rem;
  color: rgba(242, 235, 217, 0.5);
  line-height: 1.8;
  max-width: 500px;
}

/* ── Decorative divider ─────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 58, 0.4), transparent);
}
.divider-ornament {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  letter-spacing: 0.2em;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--black);
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: filter 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(201, 151, 58, 0.4);
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(201, 151, 58, 0.1); border-color: var(--gold); }
