/* Oke & Tempo - Base resets + shell (15/Aug/26)
   Extracted from index.html inline <style> block. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
html, body {
  height: 100%;
  overflow: hidden;
}
body {
  background: var(--cotton);
  color: var(--charcoal);
  font-family: Manrope, system-ui, sans-serif;
  user-select: none;
  -webkit-user-select: none;
}
input,
textarea,
select,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
body.founder-open,
body.drawer-open {
  overflow: hidden;
  touch-action: none;
  background: var(--charcoal);
}
#smooth-content {
  position: fixed;
  inset: 0;
  overflow: hidden;
}
.hero__logo {
  width: clamp(168px, 26.4vw, 264px);
  margin-bottom: clamp(18px, 3vh, 32px);
  opacity: 0;
}
