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

:root {
  --navy:   #2B3073;
  --green:  #3DAA5C;
  --magenta:#E8317A;
  --gold:   #F5A623;
  --teal:   #2BB5A0;
  --peach:  #F4956A;
  --bloom:  #d4688a;
  --cream:  #f8f4ef;
  --ink:    #1c1814;
  --mist:   #7a7068;
  --rule:   rgba(28,24,20,0.1);
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2.5rem;
  border-bottom: 0.5px solid var(--rule);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-back {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--ink); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--navy);
  color: rgba(245, 240, 234, 0.7);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--bloom);
}
.footer-logo img { height: 44px; width: auto; }
.footer-by { font-size: 11px; color: rgba(245, 240, 234, 0.55); margin-top: 8px; font-weight: 300; }
.footer-contact { font-size: 12.5px; line-height: 2; color: rgba(245, 240, 234, 0.65); text-align: right; font-weight: 300; }
.footer-contact a { color: #f5f0ea; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--bloom); }
.footer-credits { flex-basis: 100%; font-size: 10.5px; color: rgba(245, 240, 234, 0.4); font-weight: 300; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(245, 240, 234, 0.08); letter-spacing: 0.01em; }

@media (max-width: 820px) {
  .nav { padding: 0.85rem 1.25rem; }
}
