/* ═══════════════════════════════════════════════════════
   KERRY PASTINE — DESIGN SYSTEM
   Fonts: Unbounded (headlines) / Poppins (body)
   Colors: Black #000 · Abyss #061F28 · Teal #70A2AE
           Gold #DFB62B · Parchment #F2E8DF · White #fff
   ═══════════════════════════════════════════════════════ */

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

:root {
  --black:       #000000;
  --abyss:       #061F28;
  --teal:        #70A2AE;
  --gold:        #DFB62B;
  --gold-dark:   #b89220;
  --parchment:   #F2E8DF;
  --white:       #ffffff;
  --gold-muted:  rgba(223,182,43,0.15);
  --white-70:    rgba(255,255,255,0.70);
  --white-50:    rgba(255,255,255,0.50);
  --white-35:    rgba(255,255,255,0.35);
  --abyss-text:  #3a5a65;
  /* Legacy aliases for inline styles */
  --burgundy:      #061F28;
  --burgundy-dark: #000000;
  --gold-light:    #DFB62B;
  --cream:         #F2E8DF;
  --warm-white:    #F2E8DF;
  --charcoal:      #061F28;
  --warm-gray:     #8A7F78;
  --forest:        #061F28;
  --text:          #061F28;
  --text-light:    #3a5a65;
}

html { scroll-behavior: smooth; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem; font-weight: 900;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.01em; line-height: 1.1;
}
.nav-logo span {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 0.57rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-50); margin-top: 1px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 0 !important;
  font-family: 'Unbounded', sans-serif !important;
  font-size: 0.62rem !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-instagram { display: flex; align-items: center; color: rgba(255,255,255,0.82) !important; transition: color 0.18s; }
.nav-instagram:hover { color: var(--gold) !important; }
.nav-instagram svg { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 0.9rem 2rem; font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; border-radius: 0;
  transition: background 0.18s; white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--abyss);
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: gap 0.18s;
}
.btn-secondary:hover { gap: 0.7rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--abyss);
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: gap 0.18s;
}
.btn-ghost:hover { gap: 0.7rem; }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 0.9rem 2rem; font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; border-radius: 0;
  transition: background 0.18s; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.5); padding-bottom: 2px;
}

/* ── SHARED ── */
.section-eyebrow {
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--abyss-text); margin-bottom: 1rem;
}

/* ── FADE UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white-70); padding: 4rem 6rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}
.footer-brand .brand-name {
  font-family: 'Unbounded', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--gold); margin-bottom: 0.4rem;
}
.footer-brand .brand-tag {
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white-50); margin-bottom: 1rem;
}
.footer-brand p { font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: var(--white-50); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Unbounded', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-family: 'Poppins', sans-serif; font-size: 0.82rem; color: var(--white-50);
  text-decoration: none; margin-bottom: 0.6rem; transition: color 0.18s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: var(--white-35); }
.footer-bottom a {
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: var(--white-35);
  text-decoration: none; transition: color 0.18s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE (shared) ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 3rem 3rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}
