/* ============================================================
   VKREATE — CSS Reset + Design Tokens
   ============================================================ */

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

:root {
  /* Brand Colors */
  --green-deep:    #2E4A40;
  --green-mid:     #3D5C50;
  --green-light:   #4A6B5E;
  --green-muted:   #6B8F81;
  --green-faint:   #EBF0EE;
  --green-glass:   rgba(61, 92, 80, 0.08);

  --cream:         #F5F0E8;
  --cream-dark:    #EDE5D8;
  --warm-white:    #FAFAF7;
  --white:         #FFFFFF;

  --charcoal:      #1A2420;
  --charcoal-mid:  #243028;
  --text-body:     #3A4A44;
  --text-muted:    #6B7B76;
  --text-light:    #9AACA6;

  --gold:          #C9A96E;
  --gold-light:    #E8C98A;
  --gold-faint:    rgba(201, 169, 110, 0.15);

  --border:        rgba(61, 92, 80, 0.12);
  --border-strong: rgba(61, 92, 80, 0.24);

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(30,50,40,0.06);
  --shadow-sm:   0 2px 8px rgba(30,50,40,0.08);
  --shadow-md:   0 8px 24px rgba(30,50,40,0.10);
  --shadow-lg:   0 20px 48px rgba(30,50,40,0.14);
  --shadow-xl:   0 32px 80px rgba(30,50,40,0.18);
  --shadow-card: 0 4px 20px rgba(30,50,40,0.08);

  /* Typography */
  --font-serif:  Arial, Helvetica, sans-serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-mid: 280ms;
  --dur-slow: 500ms;

  /* Nav height */
  --nav-height: 72px;
}

/* ── Base ─────────────────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

body.nav-open {
  overflow: hidden;
}

img { display: block; width: 100%; height: auto; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Typography Scale ─────────────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}
.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
}
.t-overline {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-body { font-size: 1rem; line-height: 1.7; }
.t-body-sm { font-size: 0.875rem; line-height: 1.6; }
.t-body-lg { font-size: 1.125rem; line-height: 1.75; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
@media (max-width: 900px) {
  .container { padding: 0 var(--space-lg); }
}
@media (max-width: 576px) {
  .container { padding: 0 16px; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.green-text { color: var(--green-mid); }
.gold-text  { color: var(--gold); }
.muted-text { color: var(--text-muted); }
