:root {
  --cream: #f9f5ef;
  --cream-dark: #f0e9de;
  --ink: #1a1612;
  --gold: #b8935a;
  --gold-light: #d4af7a;
  --gold-pale: rgba(184, 147, 90, 0.1);
  --muted: #7a6e62;
  --border: #e2d9cc;
  --surface: #ffffff;
  --error: #c0392b;
  --success: #27ae60;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

.page-hero {
  background: var(--ink);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 15% 60%,
      rgba(184, 147, 90, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 30%,
      rgba(184, 147, 90, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
}

.page-hero h1 span {
  color: var(--gold-light);
}

.page-hero p {
  color: rgba(249, 245, 239, 0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.hero-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
