:root {
  --background: 42 42% 96%;
  --foreground: 26 42% 13%;
  --primary: 28 74% 35%;
  --primary-foreground: 44 55% 96%;
  --secondary: 146 32% 24%;
  --secondary-foreground: 45 45% 94%;
  --muted: 37 32% 88%;
  --muted-foreground: 28 20% 39%;
  --destructive: 3 70% 42%;
  --destructive-foreground: 44 55% 96%;
  --border: 34 30% 78%;
  --card: 42 48% 99%;
  --accent: 39 85% 55%;
  --shadow-sm: 0 8px 22px rgba(64, 38, 18, 0.08);
  --shadow-md: 0 18px 45px rgba(64, 38, 18, 0.13);
  --shadow-lg: 0 30px 80px rgba(64, 38, 18, 0.22);
  --transition-fast: 160ms ease;
  --transition-smooth: 280ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}
.dark {
  --background: 24 30% 9%;
  --foreground: 42 48% 94%;
  --primary: 35 84% 58%;
  --primary-foreground: 24 35% 11%;
  --secondary: 145 30% 40%;
  --secondary-foreground: 42 48% 94%;
  --muted: 25 24% 18%;
  --muted-foreground: 38 22% 72%;
  --destructive: 3 72% 58%;
  --destructive-foreground: 42 48% 94%;
  --border: 28 22% 25%;
  --card: 24 28% 13%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, hsla(var(--accent), .22), transparent 34rem),
    radial-gradient(circle at bottom right, hsla(var(--secondary), .14), transparent 30rem),
    hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: max(16px, 1rem); }
.luxury-card {
  background: linear-gradient(145deg, hsla(var(--card), .96), hsla(var(--muted), .58));
  border: 1px solid hsla(var(--border), .8);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}
.gold-text {
  background: linear-gradient(120deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.safe-bottom { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
@media (min-width: 768px) { .safe-bottom { padding-bottom: 2rem; } }