/* ============================================================
   GLOBAL.CSS – PRINTPACK Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

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

:root {
  

  --gold-pale : #FDF6E3;
  --navy      : #1A2B4A;
  --navy-light: #243660;
  --dark      : #1E1E1E;
  --mid       : #555;
  --muted     : #999;
  --border    : #E8E8E8;
  --light     : #F8F8F6;
  --white     : #FFFFFF;
  --green     : #3a7d44;

  --font-body   : 'Be Vietnam Pro', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius  : 8px;
  --radius-lg: 16px;
  --shadow  : 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { 
  max-width: 100%; 
  display: block; 
}
a   { 
  text-decoration: none; 
  color: inherit; 
}

section { padding: 72px 6vw; }
.container { max-width: 1180px; margin: 0 auto; }

/* ── SECTION HEADERS ── */
.sec-label {
  font-size: .75rem; 
  font-weight: 600;
  letter-spacing: .22em; 
  text-transform: uppercase;
  color: var(--gold); 
  margin-bottom: .5rem;
}
.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; 
  color: var(--dark); 
  line-height: 1.2;
}
.sec-title .gold { 
  color: var(--green); 
}
.sec-center { text-align: center; 
  margin-bottom: 3rem; 
}


/* ── RESPONSIVE HELPERS ── */
@media (max-width: 768px) {
  section { padding: 52px 5vw; }
  .float-actions { bottom: 1rem; right: 1rem; }
}