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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Scrollbar — minimal */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-muted);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Section base */
section {
  position: relative;
  padding: var(--section-py) 0;
}

/* Editorial section label — flanked by horizontal lines */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* Left-aligned label — only right line */
.section-label.label-start::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.section-title em,
.section-title i {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.85;
  font-weight: 300;
}

/* Thin decorative rule */
.rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 1.25rem auto;
}
