/* ============================================================
   LEF. Websites — Clean editorial system
   Bold colors, generous whitespace, sharp type.
   No sticker shadows, no chunky borders, no rotation.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --pink:   #E91E8C;
  --yellow: #FDDD07;
  --teal:   #00B4C5;
  --ink:    #1A1320;
  --ink-2:  #4A3A55;
  --ink-3:  #8A7A95;
  --cream:  #FFF8E8;
  --kraft:  #EFE4CE;
  --line:   rgba(26,19,32,.10);

  --display: 'Bebas Neue', Impact, sans-serif;
  --sans:    'Poppins', -apple-system, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* Display type */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 0.12em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav (shared shape — color is per-site) */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex; align-items: center;
}
.nav .container {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mark {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--pink);
}
.nav-mark .dot { color: var(--pink); }
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 500; font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-pink   { background: var(--pink);  border-color: var(--pink);  color: #fff; }
.btn-pink:hover { background: transparent; color: var(--pink); }
.btn-light  { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost  { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.85); }
.footer li a:hover { color: var(--pink); }
.footer-mark {
  font-family: var(--display);
  font-size: 64px; line-height: 1; letter-spacing: 0.01em;
  color: var(--pink);
  margin: 0 0 18px;
}
.footer-tag {
  font-size: 14px; color: rgba(255,255,255,.65); max-width: 320px; line-height: 1.6;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: 0.04em;
}

/* Hub-specific helpers */
.hub-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.hub-card:hover { transform: translateY(-4px); }
.hub-card .arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.hub-card:hover .arrow { background: currentColor; }
.hub-card:hover .arrow svg { stroke: var(--bg); }

@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
