/* ==========================================================================
   VZ CONCIERGE SERVICE — BASE & RESET
   Luxury dark design system. Tuning: #090909 / gold #C8A96A.
   ========================================================================== */

:root {
  /* ——— Palette ——— */
  --bg: #090909;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --gold: #C8A96A;
  --gold-light: #D8BC84;
  --gold-soft: rgba(200, 169, 106, 0.14);
  --white: #F8F8F8;
  --muted: #AAAAAA;
  --muted-2: #8a8a8a;
  --line: rgba(255, 255, 255, 0.07);
  --line-gold: rgba(200, 169, 106, 0.28);

  /* ——— Typography ——— */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* ——— Spacing scale ——— */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* ——— Layout ——— */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 2px;

  /* ——— Motion ——— */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;

  /* ——— Glass ——— */
  --glass-bg: rgba(9, 9, 9, 0.62);
  --glass-line: rgba(255, 255, 255, 0.08);

  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(200, 169, 106, 0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(200, 169, 106, 0.035), transparent 55%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ——— Scrollbar (chromium) ——— */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border: 2px solid var(--bg);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
