/* =============================================
   Bellway — Global Styles
   Plum (#6B2D5B / #1a0f1e) + Gold (#D4AF37) on Dark
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #1a0f1e;
  color: #FDF8F0;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #1a0f1e; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 3px; }

::selection { background: #D4AF37; color: #1a0f1e; }

/* ---- Fade-up animation ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---- Global section wrapper ---- */
.section-wrap {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Section label (used across partials) ---- */
.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

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

.section-title em {
  font-style: italic;
  color: #D4AF37;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(253,248,240,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* ---- Button reset ---- */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* ---- Remove old partial styles that might bleed through ---- */
.features, .philosophy, .manifesto, .closing, .how, .forwho, .header { background: transparent; }