:root {
  --background: 0 0% 100%;
  --foreground: 76 77% 9%;

  --card: 0 0% 100%;
  --card-foreground: 76 77% 9%;

  --popover: 0 0% 100%;
  --popover-foreground: 76 77% 9%;

  --primary: 14 95% 67%;
  --primary-foreground: 0 0% 100%;

  --secondary: 72 60% 71%;
  --secondary-foreground: 76 77% 9%;

  --muted: 28 43% 91%;
  --muted-foreground: 76 77% 9% / 0.6;

  --accent: 27 95% 79%;
  --accent-foreground: 76 77% 9%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 76 77% 9% / 0.2;
  --input: 28 43% 91%;
  --ring: 14 95% 67%;

  --radius: 0.75rem;

  --rust: 14 95% 67%;
  --butter: 72 60% 71%;
  --navy: 76 77% 9%;
  --alabaster: 28 43% 91%;
  --soft-gray: 0 0% 100%;
  --deep-navy: 76 77% 9%;

  --gradient-hero: linear-gradient(135deg, hsl(var(--alabaster)) 0%, hsl(var(--soft-gray)) 100%);
  --shadow-soft: 0 4px 10px hsl(76 77% 9% / 0.12);
  --shadow-hover: 0 8px 16px hsl(76 77% 9% / 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Forum', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }
}

p,
span,
label,
input,
textarea,
button {
  font-weight: 300;
  letter-spacing: 0;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-reveal-fast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-fast {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.carousel-viewport {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.carousel-slide {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.carousel-track {
  scroll-snap-type: x mandatory;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.site-header {
  box-shadow: 0 2px 8px rgba(27, 38, 6, 0.12);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 8px 16px rgba(27, 38, 6, 0.16);
}

.form-message {
  font-size: 0.95rem;
}
