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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #0D0D0D;
  color: #F5EFE6;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Selection */
::selection { background: #2563EB; color: white; }

/* Focus */
:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Links */
a { color: inherit; }

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

/* Shared section label style (used in multiple partials) */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 1.5rem;
}

.section-label-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 1.5rem;
}

.section-title-dark {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #F5EFE6;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-body-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  color: rgba(245,239,230,0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 3.5rem;
}

/* Animations on scroll */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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