/* ============================================================
   LUNA CUSTOM HOMES — Base
   Variables, fonts, reset, container, body defaults
   ============================================================ */

/* ── Puella — place Puella files in fonts/ folder ────────── */
@font-face {
  font-family: 'Puella';
  src: url('../fonts/puella.otf') format('opentype'),
       url('../fonts/puella.ttf')  format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ───────────────────────────────────────────── */
:root {
  --dark:        #0c0c0c;
  --white:       #ffffff;
  --gold:        #c8a86a;
  --header:      'Puella', 'Cormorant Garamond', Georgia, serif;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(200,168,106,.28); color: var(--white); }

/* ── Container ──────────────────────────────────────────── */
.luna-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
