/* ══════════════════════════════════════
   AURA AESTHETIC — Design Tokens + Reset
   ══════════════════════════════════════ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Ma+Shan+Zheng&display=swap');

:root {
  /* Colors */
  --c-bg-dark: #0C0C0C;
  --c-bg-warm: #FAF7F4;
  --c-bg-card: #161616;
  --c-white: #FFFFFF;
  --c-text: #1A1A1A;
  --c-text-secondary: #4B5563;
  --c-accent: #C4967A;

  /* Fonts */
  --ff-heading: 'Noto Serif SC', 'Songti SC', serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --ff-calligraphy: 'Ma Shan Zheng', cursive;

  /* Spacing (8px grid) */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 64px;
  --sp-3xl: 80px;
  --sp-4xl: 100px;

  /* Radius */
  --r-card: 20px;
  --r-pill: 100px;
  --r-portrait: 250px;

  /* Easing */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

  /* Transitions */
  --t-fast: 0.2s var(--ease-out);
  --t-normal: 0.4s var(--ease-out);
  --t-slow: 0.6s var(--ease-smooth);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  outline: none;
  border: none;
  font: inherit;
}

/* ── Utilities ── */
.overline {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-accent);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* ── Selection ── */
::selection {
  background: var(--c-accent);
  color: var(--c-white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--c-accent);
  border-radius: 2px;
}
