:root {
  --background: 0 0% 100%;
  --foreground: 320 32% 11%;
  --card: 0 0% 100%;
  --card-foreground: 320 32% 11%;
  --primary: 320 100% 19%;
  --primary-foreground: 40 33% 97%;
  --secondary: 158 100% 41%;
  --secondary-foreground: 320 100% 12%;
  --muted: 330 20% 96%;
  --muted-foreground: 320 10% 38%;
  --accent: 38 92% 50%;
  --accent-foreground: 320 100% 12%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 330 16% 89%;
  --input: 214 32% 91%;
  --ring: 320 100% 19%;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.font-display {
  font-family: 'Fraunces', serif;
}

.font-body {
  font-family: 'Karla', sans-serif;
}

.wr-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.wr-skip-link:focus {
  top: 0;
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.text-primary {
  color: hsl(var(--primary));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.text-accent {
  color: hsl(var(--accent));
}

.bg-card {
  background-color: hsl(var(--card));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

.bg-background {
  background-color: hsl(var(--background));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  transition: all 0.2

/* Baseline Media Constraints */
img, svg, video { max-width: 100%; height: auto; }
header img, nav img, .brand-logo { max-height: 48px; width: auto; }
footer img { max-height: 40px; width: auto; }

/* Hero & Header Gradients */
.hero-gradient,
section[class*="from-primary"],
section[class*="bg-gradient"],
.bg-hero {
  background-color: #600040 !important;
  background-image: linear-gradient(135deg, #600040 0%, #4a0030 50%, #260018 100%) !important;
  color: #ffffff !important;
}

/* Button & Component Utilities */
.btn-primary {
  background-color: #600040 !important;
  color: #ffffff !important;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #00d084 !important;
  color: #1a0513 !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 208, 132, 0.35);
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 208, 132, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
}

.social-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: all 0.2s ease;
}
.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px);
}

/* Consistent Brand Footer */
footer,
footer[class*="bg-"] {
  background-color: #1a0513 !important;
  color: #ffffff !important;
}
