/* ══════════════════════════════════════════════
   globals.css — Design tokens, resets, shared styles
   ══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --gold: #EDC580;
  --gold-dim: rgba(237, 197, 128, 0.16);
  --gold-glow: rgba(237, 197, 128, 0.08);
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-elevated: #181818;
  --text: #c7d3e6;
  --text-dim: rgba(199, 211, 230, 0.56);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --content-width: 1100px;
  --section-padding: clamp(60px, 10vw, 120px);
  --nav-height: 64px;
  --section-black-bg: var(--dark);
  --section-grey-bg: #323232;
  --section-gold-bg: var(--gold);
}

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

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: #fff;
}

/* ── Layout helpers ── */
.section {
  padding: var(--section-padding) 24px;
  position: relative;
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Section types ── */
.section-type-black {
  background: var(--section-black-bg);
}

.section-type-grey {
  background: var(--section-grey-bg);
}

.section-type-gold {
  background: var(--section-gold-bg);
}

.section-type-grey .section-label {
  color: var(--gold);
}

.section-type-grey .section-title {
  color: #fff;
}

.section-type-grey .section-subtitle {
  color: var(--gold);
}

.section-type-gold,
.section-type-gold .section-inner {
  color: var(--dark);
}

.section-type-gold .section-label,
.section-type-gold .section-title,
.section-type-gold .section-subtitle,
.section-type-gold :is(h1, h2, h3, h4, h5, h6, p, li, a, span, strong, em, small, label) {
  color: var(--dark);
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: #f3d7a2;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(237, 197, 128, 0.24);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(237, 197, 128, 0.32);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(237, 197, 128, 0.08);
  transform: translateY(-2px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Forms ── */
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(237, 197, 128, 0.45);
}

.form-group textarea {
  height: 160px;
  resize: none;
}