/* ============================================================
   Singdia — Site-wide tokens & reset
   ============================================================ */

:root {
  /* Palette */
  --maroon: #6b1231;
  --maroon-deep: #4a0820;
  --saffron: #e67a2b;
  --gold: #d9a441;
  --gold-soft: #f1d080;
  --rose: #c94f6d;
  --rose-pale: #f6dccf;
  --plum: #4e2357;
  --cream: #fbf5ec;
  --cream-warm: #fdf1de;
  --ink: #2a0a18;
  --ink-soft: #5a2a3c;
  --ink-mute: #846876;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --container-wide: 1440px;
  --header-h: 90px;
  --header-h-mobile: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Kill any horizontal scroll site-wide (bleeding glows, scrollers, etc.)
   without trapping the fixed header or sticky elements. */
html { overflow-x: clip; }
body { overflow-x: clip; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
}

/* ============================================================
   Buttons (shared)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow:
    0 10px 28px -10px rgba(107, 18, 49, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -10px rgba(107, 18, 49, 0.6);
}
.btn--primary:active { transform: translateY(0); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }

.btn--secondary {
  background: rgba(255,255,255,0.7);
  color: var(--maroon);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(107,18,49,0.2);
}
.btn--secondary:hover {
  background: #fff;
  border-color: var(--maroon);
}

/* ============================================================
   Eyebrow (small label above section headings)
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--saffron);
}
