@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:         #0c0c0d;
  --bg2:        #131315;
  --bg3:        #1a1a1d;
  --bg4:        #222226;
  --gold:       #c8a96e;
  --gold-lt:    #dfc08a;
  --gold-dk:    #9e7c45;
  --text:       #f2ece0;
  --text-sub:   #a09a8e;
  --text-dim:   #5a5650;
  --border:     rgba(200,169,110,0.15);
  --border2:    rgba(255,255,255,0.07);
  --nav-h:      80px;
  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p  { color: var(--text-sub); font-weight: 300; text-wrap: pretty; }
a  { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--text); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold { color: var(--gold); }

/* ─── WORDPRESS ALIGNMENT ────────────────────────────────────── */
/* Standard WP alignment classes — Elementor uses its own, but we keep these for editor */
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

/* WordPress caption block */
.wp-caption      { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-dim); text-align: center; margin-top: 6px; }

/* Pagination links (the_posts_pagination) */
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border2);
  font-size: 0.82rem; color: var(--text-sub);
  transition: all var(--transition);
}
.page-numbers.current,
.page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.page-numbers.dots  { border: none; width: auto; }
