:root {
  --bg: #0c0c10;
  --bg-alt: #0e0e14;
  --bg-card: #111118;
  --fg: #f4ede0;
  --ivory: #f4ede0;
  --ivory-dim: rgba(244, 237, 224, 0.55);
  --amber: #e8a030;
  --border: rgba(244, 237, 224, 0.07);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--bg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

::selection { background: rgba(232,160,48,0.25); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; height: auto; }
button { cursor: pointer; }

.section-tag {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
}

/* Subtle grain texture on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

section { position: relative; z-index: 1; }

/* Shared CTA button — amber on dark premium bg */
.cta-btn {
  display: inline-block;
  background: var(--amber);
  color: #0c0c10;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-btn:hover {
  background: #f0b040;
  box-shadow: 0 0 24px rgba(232,160,48,0.35);
  transform: translateY(-2px);
  text-decoration: none;
}
