:root {
  /* Richer, deeper luxury colors */
  --plum: #280C24;
  --plum-soft: #4A1D43;
  --pink: #E83A84;
  --pink-soft: #F9B2D0;
  --pink-glow: rgba(232, 58, 132, 0.4);
  --teal: #3B8C86;
  --teal-soft: #A3D4CF;
  
  /* Backgrounds */
  --cream: #FDF9F5;
  --cream-2: rgba(255, 255, 255, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  
  /* Accents */
  --gold: #D4A351;
  --ink: #1F111E;
  --celeste: #5BCBE0;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(40, 12, 36, 0.05);
  --shadow-md: 0 12px 30px rgba(40, 12, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(40, 12, 36, 0.12);
  --shadow-glow: 0 10px 30px var(--pink-glow);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(249, 178, 208, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(163, 212, 207, 0.15) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.script {
  font-family: 'Playball', cursive;
  font-weight: 400;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
